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

# List unified leads (v0)

> Channel-touchpoint aggregation of leads across calls, the scheduling widget, web chat, text, and Google LSA. This is **not** the canonical leads record and does not include the raw third-party payload — for that, use the v1 leads feed (`GET /api/v1/teams/{teamId}/leads`). Requires the `read:leads` permission.



## OpenAPI

````yaml /api-reference/openapi.json get /api/leads
openapi: 3.1.0
info:
  title: Avoca Enterprise API
  description: >-
    Read-only programmatic access to Avoca data: calls, transcripts, leads,
    coach evaluations, Simple Scheduler sessions and analytics, and outbound
    texting activity.
  version: 1.3.0
servers:
  - url: https://enterprise-api.avoca.ai
security:
  - bearerAuth: []
tags:
  - name: Calls
    description: Call records, transcripts, and pre-call transfers
  - name: Leads
    description: Unified leads (v0) and the canonical leads feed (v1)
  - name: Teams
    description: Teams accessible to the API key
  - name: Coach
    description: Coach (QA) call evaluations and rubrics
  - name: Scheduler Analytics (v0)
    description: Simple Scheduler analytics — legacy flat endpoints
  - name: Sessions & Bookings
    description: v1 scheduling-widget sessions and completed bookings
  - name: Analytics (v1)
    description: v1 funnel, UTM, service-area, and issue-type analytics
  - name: Outbound Texting
    description: Campaign text and subscription-event feeds for BI ingestion
paths:
  /api/leads:
    get:
      tags:
        - Leads
      summary: List unified leads (v0)
      description: >-
        Channel-touchpoint aggregation of leads across calls, the scheduling
        widget, web chat, text, and Google LSA. This is **not** the canonical
        leads record and does not include the raw third-party payload — for
        that, use the v1 leads feed (`GET /api/v1/teams/{teamId}/leads`).
        Requires the `read:leads` permission.
      operationId: listLeadsV0
      parameters:
        - $ref: '#/components/parameters/xTeamId'
        - $ref: '#/components/parameters/startDate7d'
        - $ref: '#/components/parameters/endDateNow'
        - name: type
          in: query
          description: Filter by lead type
          schema:
            type: string
            enum:
              - call
              - scheduling_widget
              - web_chat
              - text
              - google_lsa
        - $ref: '#/components/parameters/limit1000'
        - $ref: '#/components/parameters/offset'
      responses:
        '200':
          description: Paginated list of unified leads
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/LeadV0'
                  pagination:
                    $ref: '#/components/schemas/OffsetPagination'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    xTeamId:
      name: x-team-id
      in: header
      description: >-
        Target team ID. Required for multi-team (`enterprise_all_teams` /
        `portfolio_all_teams`) keys on v0 endpoints; single-team keys are locked
        to their team and omit it.
      schema:
        type: integer
    startDate7d:
      name: start_date
      in: query
      description: Start of date range (ISO 8601; default 7 days ago)
      schema:
        type: string
        format: date-time
    endDateNow:
      name: end_date
      in: query
      description: End of date range (ISO 8601; default now)
      schema:
        type: string
        format: date-time
    limit1000:
      name: limit
      in: query
      description: Results per page (default 100, max 1000)
      schema:
        type: integer
        default: 100
        maximum: 1000
    offset:
      name: offset
      in: query
      description: Pagination offset (default 0)
      schema:
        type: integer
        default: 0
  schemas:
    LeadV0:
      type: object
      properties:
        id:
          type: string
          format: uuid
        datetime:
          type: string
          format: date-time
        type:
          type: string
          enum:
            - call
            - scheduling_widget
            - web_chat
            - text
            - google_lsa
        customer_phone:
          type:
            - string
            - 'null'
        customer_email:
          type:
            - string
            - 'null'
        lead_content:
          type: object
          description: Channel-specific lead content
        agent:
          type:
            - string
            - 'null'
          description: Assistant ID that handled the touchpoint
        referrer_url:
          type:
            - string
            - 'null'
        attribution:
          type: object
          properties:
            utm_source:
              type:
                - string
                - 'null'
            gclid:
              type:
                - string
                - 'null'
    OffsetPagination:
      type: object
      properties:
        limit:
          type: integer
        offset:
          type: integer
        has_more:
          type: boolean
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error type
        message:
          type: string
          description: Human-readable description (newer endpoints)
      required:
        - error
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `avoca_<64 hex characters>`

````