Retrieve all extraction templates for your account to view available data extraction schemas.
cURL
curl --request GET \ --url https://api.bolna.ai/extractions \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "3c90c3cc0d444b5088228dd25736052a", "name": "Lead Qualification", "json_schema": { "type": "object", "properties": { "lead_quality": { "type": "string", "enum": [ "hot", "warm", "cold" ] }, "budget_range": { "type": "string" }, "timeline": { "type": "string" } } }, "instructions": "Extract the lead quality, budget, and timeline from the conversation.", "model": "gpt-4.1-mini", "inputs": {}, "keys": {}, "display": true, "supports_custom_questions": false, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
list extraction templates response
Show child attributes
Was this page helpful?