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

# Get a chip replacement

> Returns the status of a chip replacement. Poll until status is `confirmed`.



## OpenAPI

````yaml /openapi.json get /v1/units/{unit_id}/chip-replacements/{replacement_id}
openapi: 3.1.0
info:
  title: Endstate API
  version: v1
  description: Endstate developer API for chip verification and ownership workflows.
servers:
  - url: https://api2.endstate.io
    description: Production
security: []
paths:
  /v1/units/{unit_id}/chip-replacements/{replacement_id}:
    get:
      tags:
        - chips
      summary: Get a chip replacement
      description: >-
        Returns the status of a chip replacement. Poll until status is
        `confirmed`.
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: unit_id
          in: path
        - schema:
            type: string
            format: uuid
          required: true
          name: replacement_id
          in: path
      responses:
        '200':
          description: The chip replacement.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChipReplacement'
              example:
                id: 00000000-0000-4000-8000-000000000000
                unit_id: 22222222-2222-4222-8222-222222222222
                old_chip_id: ABCDEF0122
                new_chip_id: ABCDEF0123
                status: confirmed
                created_at: '2026-06-15T12:00:00.000Z'
      security:
        - ApiKeyBearer: []
components:
  schemas:
    ChipReplacement:
      type: object
      properties:
        id:
          type: string
          format: uuid
        unit_id:
          type: string
          format: uuid
        old_chip_id:
          type: string
          description: The chip being retired from the unit.
        new_chip_id:
          type: string
          description: The chip replacing it.
        status:
          type: string
          enum:
            - prepared
            - submitted
            - confirmed
            - failed
          description: Replacement progress. Poll until `confirmed`; `failed` is terminal.
        created_at:
          type: string
      required:
        - id
        - unit_id
        - old_chip_id
        - new_chip_id
        - status
        - created_at
      example:
        id: 00000000-0000-4000-8000-000000000000
        unit_id: 22222222-2222-4222-8222-222222222222
        old_chip_id: ABCDEF0122
        new_chip_id: ABCDEF0123
        status: submitted
        created_at: '2026-06-15T12:00:00.000Z'
  securitySchemes:
    ApiKeyBearer:
      type: http
      scheme: bearer
      bearerFormat: end_sk
      description: >-
        Use `Authorization: Bearer end_sk_*` for partner API keys (e.g.
        `end_sk_AbCd_example_api_key`).

````