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

# Get custom object

> Returns a custom object with its associated smart fields.



## OpenAPI

````yaml /openapi-2025-01-29.alpha.json get /custom-objects/{id}
openapi: 3.0.0
info:
  title: Tomorro API
  description: >
    The Tomorro Public API enables you to programmatically manage contracts,
    members, and counterparties. Build powerful integrations that automate your
    contract management workflows.


    ## API Version: 2025-01-29.alpha


    This documentation is for API version `2025-01-29.alpha`.


    ### Using this version

    ```

    curl -X GET https://api.tomorro.com/members \
      -H "x-api-key: YOUR_API_KEY" \
      -H "tomorro-version: 2025-01-29.alpha"
    ```
  version: 2025-01-29.alpha
  contact: {}
servers:
  - url: https://api.tomorro.com/v2
    description: Production
  - url: https://api.demo.tomorro.com/v2
    description: Demo
  - url: http://localhost:3015
    description: Local Development
security: []
tags: []
paths:
  /custom-objects/{id}:
    get:
      tags:
        - Custom Objects
      summary: Get custom object
      description: Returns a custom object with its associated smart fields.
      operationId: CustomObjectController_getCustomObject
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the custom object
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Custom object with smart fields
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomObjectDetailResponseDto'
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - X-API-KEY: []
components:
  schemas:
    CustomObjectDetailResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the custom object.
          example: 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          description: The display name of the custom object.
          example: Invoices
        help_text:
          type: string
          description: Help text describing the custom object.
          example: Track all invoices related to contracts.
          nullable: true
        smart_fields:
          description: The smart fields associated with this custom object.
          example:
            - id: 550e8400-e29b-41d4-a716-446655440000
              name: Invoice Number
              type: string
          type: array
          items:
            $ref: '#/components/schemas/CustomObjectSmartFieldDto'
      required:
        - id
        - name
        - smart_fields
    CustomObjectSmartFieldDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the smart field.
          example: 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          description: The display name of the smart field.
          example: Invoice Number
        type:
          type: string
          description: |-
            The data type of the smart field.

            - `string`: Free-text field.
            - `number`: Numeric value.
            - `date`: Date value.
            - `select`: Single-choice dropdown.
            - `multiselect`: Multi-choice dropdown.
            - `relation`: Relation to another custom object.
            - `relation_multiple`: Multiple relations to another custom object.
          enum:
            - string
            - number
            - date
            - select
            - multiselect
            - relation
            - relation_multiple
          example: string
      required:
        - id
        - name
        - type
  securitySchemes:
    X-API-KEY:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Get your key at
        https://app.tomorro.com/settings/integrations?integration=api-key

````