---
title: "Retrieve an agent deployment"
url: "https://real-estate-agency.apim.eu/apis/agent-deployments/versions/3a3ada6b-888e-498a-bfb3-a134ac91f753/operations/getAgent"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/agent-deployments/versions/3a3ada6b-888e-498a-bfb3-a134ac91f753.md

# Retrieve an agent deployment

`GET` `/agents/{agentId}`

Operation ID: `getAgent`

## Path parameters

- `agentId` (string, required)

## Responses

- `200` - Agent deployment
- `404` - Record not found

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Agent Deployments
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
paths:
  /agents/{agentId}:
    parameters:
      - name: agentId
        in: path
        required: true
        schema:
          type: string
          example: agt_8f2c1a
    get:
      tags:
        - Agents
      summary: Retrieve an agent deployment
      operationId: getAgent
      responses:
        "200":
          description: Agent deployment
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Agent"
        "404":
          $ref: "#/components/responses/NotFound"
security:
  - apiKey: []
components:
  schemas:
    Agent:
      allOf:
        - $ref: "#/components/schemas/AgentInput"
        - type: object
          properties:
            id:
              type: string
              example: agt_8f2c1a
            status:
              $ref: "#/components/schemas/AgentStatus"
            artifact_count:
              type: integer
              example: 14
            created_at:
              type: string
              format: date-time
              example: 2026-08-14T08:12:44Z
            updated_at:
              type: string
              format: date-time
              example: 2026-08-20T09:38:02Z
    AgentInput:
      type: object
      required:
        - category
        - title
        - owning_team
      properties:
        category:
          $ref: "#/components/schemas/AgentCategory"
        deployment_tier:
          $ref: "#/components/schemas/DeploymentTier"
        title:
          type: string
          maxLength: 120
          example: Internal Support Triage Copilot
        description:
          type: string
          example: Triages inbound support tickets and drafts first-response replies for
            human review.
        owning_team:
          $ref: "#/components/schemas/OwningTeam"
        integration_count:
          type: integer
          example: 6
        tool_count:
          type: integer
          example: 4
        model_provider:
          type: string
          example: Anthropic Claude
        model_release_date:
          type: string
          format: date
          example: 2026-02-01
        cost_per_1k_tokens_usd:
          type: number
          format: float
          example: 0.015
        monthly_budget_usd:
          type: integer
          example: 4000
        support_budget_usd:
          type: integer
          example: 500
        available_from:
          type: string
          format: date
          example: 2026-11-01
        compliance_certification:
          $ref: "#/components/schemas/ComplianceCertification"
        chargeback:
          $ref: "#/components/schemas/ChargebackInfo"
    AgentStatus:
      type: string
      enum:
        - draft
        - active
        - paused
        - deprecated
        - retired
        - archived
      example: active
    Error:
      type: object
      description: Uniform error format across all Nexora AI APIs.
      required:
        - code
        - message
      properties:
        code:
          type: string
          example: validation_failed
        message:
          type: string
          example: Compliance disclosures from the certification are missing.
        details:
          type: array
          items:
            $ref: "#/components/schemas/ErrorDetail"
    AgentCategory:
      type: string
      enum:
        - copilot
        - autonomous-agent
        - workflow-agent
        - rag-assistant
        - voice-agent
      example: copilot
    DeploymentTier:
      type: string
      enum:
        - sandbox
        - pilot
        - production
      example: pilot
    OwningTeam:
      type: object
      required:
        - business_unit
      properties:
        owning_team:
          type: string
          example: Support Engineering
        business_unit:
          type: string
          example: Customer Success
        cost_center:
          type: string
          example: CC-4021
        data_scope_precision:
          type: string
          description: Controls how precisely the owning team appears in the catalog entry.
          enum:
            - department-only
            - business-unit
            - org-wide
          default: business-unit
    ComplianceCertification:
      type: object
      description: Figures needed to publish a catalog entry.
      properties:
        cert_type:
          type: string
          enum:
            - SOC2
            - ISO27001
            - GDPR
            - HIPAA
        assessment_method:
          type: string
          enum:
            - self_attested
            - third_party_audited
        guardrail_policy_attached:
          type: string
          example: content-safety-v3
        last_audit_year:
          type: integer
          example: 2026
        data_classification_level:
          type: string
          enum:
            - public
            - internal
            - confidential
            - restricted
        valid_until:
          type: string
          format: date
          example: 2027-04-30
        exemption:
          type: string
          description: Set when no certification is currently required.
          enum:
            - pilot_program
            - internal_only_no_external_data
    ChargebackInfo:
      type: object
      properties:
        rate_percent:
          type: number
          format: float
          example: 12
        note:
          type: string
          example: includes shared platform overhead
    ErrorDetail:
      type: object
      properties:
        field:
          type: string
          example: compliance_certification.valid_until
        reason:
          type: string
          example: missing
  responses:
    NotFound:
      description: Record not found
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/Error"
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Nexora AI portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
