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

# List Provider Assistants

> List every assistant/agent the project's saved provider API key can see on a cloud provider (vapi, retell, elevenlabs, synthflow, bland), flagging those already imported into the project. Import one with `POST /v2/aiagents/` + `provider.configure_from_provider`; when `provider.credentials.api_key` is omitted there, the same saved key is used.



## OpenAPI

````yaml get /test_framework/v2/aiagents/provider-assistants/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /test_framework/v2/aiagents/provider-assistants/:
    get:
      tags:
        - test_framework
      summary: List assistants on a connected provider account
      description: >-
        List every assistant/agent the project's saved provider API key can see
        on a cloud provider (vapi, retell, elevenlabs, synthflow, bland),
        flagging those already imported into the project. Import one with `POST
        /v2/aiagents/` + `provider.configure_from_provider`; when
        `provider.credentials.api_key` is omitted there, the same saved key is
        used.
      operationId: aiagents-provider-assistants-retrieve
      parameters:
        - in: query
          name: project_id
          schema:
            type: integer
          required: true
        - in: query
          name: provider
          schema:
            type: string
          description: 'One of: vapi, retell, elevenlabs, synthflow, bland.'
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAssistantListResponse'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAssistantListErrorResponse'
          description: ''
      security:
        - api_key: []
        - oauth2: []
        - supabase_session: []
components:
  schemas:
    ProviderAssistantListResponse:
      type: object
      properties:
        provider:
          type: string
        count:
          type: integer
        assistants:
          type: array
          items:
            $ref: '#/components/schemas/ProviderAssistantListItem'
      required:
        - assistants
        - count
        - provider
    ProviderAssistantListErrorResponse:
      type: object
      properties:
        detail:
          type: string
        code:
          type: string
      required:
        - detail
    ProviderAssistantListItem:
      type: object
      properties:
        id:
          type: string
        name:
          type:
            - string
            - 'null'
        kind:
          type: string
        channel:
          type:
            - string
            - 'null'
        updated_at:
          type:
            - string
            - 'null'
        already_imported:
          type: boolean
        imported_agent_id:
          type:
            - integer
            - 'null'
        imported_agent_name:
          type:
            - string
            - 'null'
      required:
        - already_imported
        - channel
        - id
        - imported_agent_id
        - imported_agent_name
        - kind
        - name
        - updated_at
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-CEKURA-API-KEY
      description: >-
        API Key Authentication. It should be included in the header of each
        request.
    oauth2:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth access token issued by Cekura for connected apps.
    supabase_session:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Cekura dashboard session token. Not a customer API credential.

````