> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Citation Schemas

> Retrieve all citation schemas for your organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="status" type="integer">
  HTTP status code (200 for success).
</ResponseField>

<ResponseField name="data" type="array">
  An array of citation schema objects.

  <ResponseField name="id" type="string">
    The unique identifier for the citation schema (UUID format).
  </ResponseField>

  <ResponseField name="name" type="string">
    The name of the citation schema.
  </ResponseField>

  <ResponseField name="description" type="string">
    The description of the citation schema.
  </ResponseField>

  <ResponseField name="created_at" type="string">
    The timestamp when the citation schema was created (ISO 8601 format).
  </ResponseField>
</ResponseField>

<ResponseField name="errors" type="null">
  Will be null for successful requests.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": 200,
    "data": [
      {
        "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
        "name": "Customer Information Extraction",
        "description": "Extracts customer demographics and contact information from call transcripts",
        "created_at": "2023-12-15T14:30:00.000Z"
      },
      {
        "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
        "name": "Lead Qualification Schema",
        "description": "Identifies qualified leads and their interest levels",
        "created_at": "2023-12-10T09:15:30.000Z"
      }
    ],
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
