> ## 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.

# Get a deployment adapter

> Gets an attached adapter and its per-cluster load state.



## OpenAPI

````yaml GET /projects/{projectId}/endpoints/{endpointId}/deployments/{deploymentId}/adapters/{id}
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
    description: Default environment for APIs
  - url: https://api-inference.together.ai/v2
    description: Optimized environment for inference
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/endpoints/{endpointId}/deployments/{deploymentId}/adapters/{id}:
    get:
      tags:
        - DeploymentService
      summary: Get a deployment adapter
      description: Gets an attached adapter and its per-cluster load state.
      operationId: DeploymentService_GetAdapter
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            description: Project identifier.
            type: string
        - name: endpointId
          in: path
          required: true
          schema:
            description: Endpoint identifier.
            type: string
        - name: deploymentId
          in: path
          required: true
          schema:
            description: Deployment identifier.
            type: string
        - name: id
          in: path
          required: true
          schema:
            description: Adapter model identifier.
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DE.AdapterEntry'
        default:
          description: Default error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorData'
      servers:
        - url: https://api.together.ai/v2
components:
  schemas:
    DE.AdapterEntry:
      type: object
      description: >-
        Adapter attached to a deployment with desired revision and observed load
        state.
      required:
        - adapterModelId
        - desiredRevisionId
        - perCluster
        - etag
      properties:
        adapterModelId:
          type: string
          description: Adapter model identifier attached to the deployment.
        desiredRevisionId:
          type: string
          description: Adapter revision pinned on the deployment.
        perCluster:
          type: array
          items:
            $ref: '#/components/schemas/DE.DeploymentAdapterStatus'
          description: Per-cluster adapter load state reported by the controller.
        etag:
          type: string
          description: Row-level etag required for UpdateAdapter and RemoveAdapter.
        adapterModel:
          type: string
          description: >-
            Resource name of the adapter model, using
            projects/{projectId}/models/{adapterModelId}.
        desiredRevision:
          type: string
          description: >-
            Resource name of the adapter model revision pinned on the
            deployment, using
            projects/{projectId}/models/{adapterModelId}/revisions/{revisionId}.
    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
    DE.DeploymentAdapterStatus:
      type: object
      description: Controller-reported load state for an adapter on one deployment cluster.
      required:
        - adapterModelId
        - clusterId
        - state
        - readyPodCount
        - failedPodCount
        - totalPodCount
      properties:
        adapterModelId:
          type: string
          description: Adapter model identifier for this status row.
        clusterId:
          type: string
          description: Cluster reporting this adapter status.
        realizedRevisionId:
          type: string
          description: Adapter revision currently loaded on pods in this cluster.
        realizedEtag:
          type: string
          description: >-
            Adapter row etag observed by the controller when it wrote this
            status.
        state:
          enum:
            - ADAPTER_LOAD_STATE_PENDING
            - ADAPTER_LOAD_STATE_LOADING
            - ADAPTER_LOAD_STATE_READY
            - ADAPTER_LOAD_STATE_REMOVING
            - ADAPTER_LOAD_STATE_FAILED
          type: string
          description: Current adapter load state in this cluster.
        reason:
          type: string
          description: Stable reason code for the current adapter state.
        message:
          type: string
          description: Human-readable details about the current adapter state.
        readyPodCount:
          type: integer
          description: Number of pods with the adapter ready to serve.
        failedPodCount:
          type: integer
          description: Number of pods that failed to load the adapter.
        totalPodCount:
          type: integer
          description: Total pods expected to report adapter load state.
        loadedAt:
          type: string
          description: Time when the adapter first reached READY in this cluster.
          format: date-time
        updatedAt:
          type: string
          description: Time when this adapter status was last updated.
          format: date-time
        adapterModel:
          type: string
          description: >-
            Resource name of the adapter model, using
            projects/{projectId}/models/{adapterModelId}.
        realizedRevision:
          type: string
          description: >-
            Resource name of the adapter model revision currently loaded in this
            cluster, using
            projects/{projectId}/models/{adapterModelId}/revisions/{revisionId}.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-bearer-format: bearer
      x-default: default

````