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

# Get Fixed Asset

> Retrieve a specific fixed asset by its ID

# Get Fixed Asset by ID

This endpoint allows you to retrieve a specific fixed asset by its ID.

## Headers

| Parameter | Type   | Description                  |
| --------- | ------ | ---------------------------- |
| X-API-KEY | string | Formation API Key (required) |

## Path Parameters

| Parameter        | Type   | Description               |
| ---------------- | ------ | ------------------------- |
| fixed\_asset\_id | string | Fixed Asset ID (required) |

### Parameter Examples

* **Fixed Asset ID**: `64b8f1a2e4b0c8d9f0123456`

## Response

```json theme={null}
{
  "success": true,
  "message": "Fixed asset retrieved successfully",
  "data": {
    "id": "64b8f1a2e4b0c8d9f0123456",
    "title": "Office Computer",
    "placed_in_service": 1640995200,
    "cost": 1500.0,
    "salvage_value": 150.0,
    "business_use": 100.0,
    "fixed_asset_number": 1,
    "fixed_asset_number_text": "AST-1",
    "created_at": 1640995200,
    "updated_at": 1640995200
  }
}
```

### Response Parameters

| Parameter                       | Type    | Description                                |
| ------------------------------- | ------- | ------------------------------------------ |
| success                         | boolean | Indicates if the operation was successful  |
| message                         | string  | Additional information about the operation |
| data                            | object  | Response data for successful requests      |
| data.id                         | string  | Unique identifier for the fixed asset      |
| data.title                      | string  | Title/name of the fixed asset              |
| data.placed\_in\_service        | integer | Timestamp when asset was placed in service |
| data.cost                       | number  | Original cost of the fixed asset           |
| data.salvage\_value             | number  | Estimated salvage value of the asset       |
| data.business\_use              | number  | Percentage of business use (0-100)         |
| data.fixed\_asset\_number       | integer | Auto-generated fixed asset number          |
| data.fixed\_asset\_number\_text | string  | Formatted fixed asset number text          |
| data.created\_at                | integer | Creation timestamp                         |
| data.updated\_at                | integer | Last update timestamp                      |

## Error Responses

### Invalid Request (400)

```json theme={null}
{
  "success": false,
  "message": "Invalid request",
  "error": {
    "code": "INVALID_REQUEST",
    "details": "Invalid fixed asset ID format"
  }
}
```

### Unauthorized (401)

```json theme={null}
{
  "success": false,
  "message": "API key is required",
  "error": {
    "code": "API_KEY_REQUIRED",
    "details": ""
  }
}
```

### Fixed Asset Not Found (404)

```json theme={null}
{
  "success": false,
  "message": "Fixed asset not found",
  "error": {
    "code": "FIXED_ASSET_NOT_FOUND",
    "details": ""
  }
}
```

### Internal Server Error (500)

```json theme={null}
{
  "success": false,
  "message": "Internal server error",
  "error": {
    "code": "INTERNAL_ERROR",
    "details": "An unexpected error occurred."
  }
}
```

## Notes

* The fixed asset ID must be a valid ObjectID format
* This endpoint returns detailed information about a single fixed asset
* All timestamps are returned in Unix timestamp format


## OpenAPI

````yaml GET /fixed-assets/{fixed_asset_id}
openapi: 3.0.3
info:
  title: Clemta Formation API
  description: >-
    API for company formation services. This API allows partners to create,
    retrieve, and manage company formations programmatically.
  version: '2025-06-24'
  contact:
    name: Clemta API Support
    email: tech@clemta.com
  license:
    name: Proprietary
    url: https://clemta.com/terms
servers:
  - url: https://api.clemta.com
    description: Production server
  - url: https://sandbox.clemta.com
    description: Sandbox server
security:
  - ApiKeyAuth: []
paths:
  /fixed-assets/{fixed_asset_id}:
    get:
      tags:
        - Fixed Assets
      summary: Get Fixed Asset by ID
      description: Retrieves a specific fixed asset by its ID
      operationId: getFixedAssetById
      parameters:
        - name: fixed_asset_id
          in: path
          required: true
          description: Fixed Asset ID
          schema:
            type: string
      responses:
        '200':
          description: Fixed asset retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FixedAssetGetResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestError'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: Fixed asset not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FixedAssetNotFoundError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
components:
  schemas:
    FixedAssetGetResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
          example: Fixed asset retrieved successfully
        data:
          $ref: '#/components/schemas/FixedAssetResponse'
    BadRequestError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Invalid request data
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_REQUEST
            details:
              type: string
              example: Field 'name' is required
    UnauthorizedError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: API key is required
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: API_KEY_REQUIRED
            details:
              type: string
              example: ''
    FixedAssetNotFoundError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Fixed asset not found
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            details:
              type: string
              example: ''
    InternalServerError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Internal server error
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: INTERNAL_ERROR
            details:
              type: string
              example: An unexpected error occurred.
    FixedAssetResponse:
      type: object
      example:
        id: 64b8f1a2e4b0c8d9f0123456
        created_at: 1640995200
        updated_at: 1640995200
        title: Office Computer
        placed_in_service: 1640995200
        cost: 1500
        salvage_value: 150
        business_use: 100
        fixed_asset_number: 1
        fixed_asset_number_text: AST-1
      properties:
        id:
          type: string
          description: Fixed asset ID
        created_at:
          type: integer
          description: Creation timestamp
        updated_at:
          type: integer
          description: Last update timestamp
        title:
          type: string
          description: Title/name of the fixed asset
        placed_in_service:
          type: integer
          description: Timestamp when the asset was placed in service
        cost:
          type: number
          description: Original cost of the fixed asset
        salvage_value:
          type: number
          description: Estimated salvage value of the asset
        business_use:
          type: number
          description: Percentage of business use (0-100)
        fixed_asset_number:
          type: integer
          description: Auto-generated fixed asset number
        fixed_asset_number_text:
          type: string
          description: Formatted fixed asset number text
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Formation API key for authentication.

````