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

# List adapters on an endpoint

> Returns all LoRA adapters bound to the specified dedicated endpoint.



## OpenAPI

````yaml GET /endpoints/{endpointId}/adapters
openapi: 3.1.0
info:
  title: Together APIs
  description: The Together REST API. See https://docs.together.ai for more details.
  version: 2.0.0
  termsOfService: https://www.together.ai/terms-of-service
  contact:
    name: Together Support
    url: https://www.together.ai/contact
  license:
    name: MIT
    url: https://github.com/togethercomputer/openapi/blob/main/LICENSE
servers:
  - url: https://api.together.ai/v1
security:
  - bearerAuth: []
paths:
  /endpoints/{endpointId}/adapters:
    parameters:
      - name: endpointId
        in: path
        required: true
        schema:
          type: string
        description: The endpoint ID
    get:
      tags:
        - Endpoints
      summary: List adapters on an endpoint
      description: Returns all LoRA adapters bound to the specified dedicated endpoint.
      operationId: listAdapters
      responses:
        '200':
          description: List of bound adapters
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: list
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        model_id:
                          type: string
                          description: Combined endpoint:adapter identifier
                        adapter_name:
                          type: string
                        endpoint_name:
                          type: string
        '404':
          description: Not Found — endpoint does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorData'
      x-codeSamples:
        - lang: Python
          label: Together AI SDK (v2)
          source: |
            from together import Together
            import os

            client = Together(
                api_key=os.environ.get("TOGETHER_API_KEY"),
            )

            adapters = client.endpoints.adapters.list("endpoint-abc123")
            for adapter in adapters.data or []:
                print(adapter.api_model_id, adapter.adapter_name, adapter.endpoint_name)
        - lang: TypeScript
          label: Together AI SDK (TypeScript)
          source: >
            import Together from "together-ai";


            const client = new Together({
              apiKey: process.env.TOGETHER_API_KEY,
            });


            const adapters = await
            client.endpoints.adapters.list("endpoint-abc123");

            for (const adapter of adapters.data ?? []) {
              console.log(adapter.model_id, adapter.adapter_name, adapter.endpoint_name);
            }
        - lang: JavaScript
          label: Together AI SDK (JavaScript)
          source: >
            import Together from "together-ai";


            const client = new Together({
              apiKey: process.env.TOGETHER_API_KEY,
            });


            const adapters = await
            client.endpoints.adapters.list("endpoint-abc123");

            for (const adapter of adapters.data ?? []) {
              console.log(adapter.model_id, adapter.adapter_name, adapter.endpoint_name);
            }
        - lang: Shell
          label: cURL
          source: >
            curl "https://api.together.ai/v1/endpoints/endpoint-abc123/adapters"
            \
                 -H "Authorization: Bearer $TOGETHER_API_KEY"
components:
  schemas:
    ErrorData:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              nullable: false
            type:
              type: string
              nullable: false
            param:
              type: string
              nullable: true
              default: null
            code:
              type: string
              nullable: true
              default: null
          required:
            - type
            - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-bearer-format: bearer
      x-default: default

````