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

# Get Agent Builder Inventory

> Get Agent Builder Inventory with the DialNexa API. Returns the model, transcriber, and language catalog used to resolve a build configuration.

<span data-api-safety-label="read-only"><Badge color="gray" size="sm" shape="pill">Read only</Badge></span>

Get Agent Builder Inventory uses your workspace API key. Returns the model, transcriber, and language catalog used to resolve a build configuration.

## Before you begin

Use a server-side [API key](/docs/api-reference/authentication) for the intended workspace.

## Get Agent Builder Inventory request

The request panel lists supported query parameters and body fields. For a request body, the example below supplies the required fields. Replace sample values with your own inputs.

```bash theme={null}
curl --request GET 'https://api.dialnexa.com/v1/agent-builder/inventory' \
  --header "Authorization: Bearer $DIALNEXA_API_KEY"
```

## Verify the result

Expect HTTP `200`. Read the `data` property in the success envelope; the response panel documents its fields.

This operation also accepts the matching `/v1/assistant` path. The request and result contracts are shared. Use one path consistently for your integration.

## Retry safety

This operation does not modify workspace resources. Retry after a transient connection failure.

## Errors and recovery

* `401`: Missing, expired, or invalid API key.

## Related endpoints

* [Build Agent Configuration](/docs/api-reference/v1/agent-builder/run)
* [Stream Agent Build](/docs/api-reference/v1/agent-builder/stream)
* [Generate Agent Objectives](/docs/api-reference/v1/agent-builder/generate-objectives)
* [Generate Agent Tone](/docs/api-reference/v1/agent-builder/generate-tone)
* [API authentication](/docs/api-reference/authentication)


## OpenAPI

````yaml GET /v1/agent-builder/inventory
openapi: 3.0.0
info:
  title: DialNexa API
  description: Public `/v1` REST API for the DialNexa voice AI platform.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: Agents
  - name: Batch Calls
  - name: Calls
  - name: Knowledge Base
  - name: Languages
  - name: LLMs
  - name: Phone Numbers
  - name: Transcribers
  - name: Webhooks
  - name: Voices
  - name: Workflows
  - name: Workflow Leads
  - name: Authentication
  - name: Agent Builder
paths:
  /v1/agent-builder/inventory:
    get:
      tags:
        - Agent Builder
      summary: Get Agent Builder Inventory
      description: >-
        Returns the model, transcriber, and language catalog used to resolve a
        build configuration.
      operationId: getAgentBuilderInventory
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - error
                  - statusCode
                  - message
                  - data
                  - timestamp
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  error:
                    type: boolean
                    enum:
                      - false
                  statusCode:
                    type: integer
                    example: 200
                  message:
                    type: string
                    example: Success
                  data:
                    type: object
                    properties:
                      llms:
                        type: array
                        description: >-
                          Available LLMs - each with id, name, and
                          model_category
                      transcribers:
                        type: array
                        description: >-
                          Available transcribers - each with id, name, provider,
                          and model_id
                      languages:
                        type: array
                        description: Available languages - each with id, name, and code
                    required:
                      - llms
                      - transcribers
                      - languages
                    additionalProperties: false
                  timestamp:
                    type: string
                    format: date-time
        '401':
          description: Missing, expired, or invalid API key.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      type: http

````