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

# Get Datastore

> Get a datastore by ID.



## OpenAPI

````yaml /openapi/product/appdb.yaml get /api/datastores/v1/{datastoreId}
openapi: 3.0.0
info:
  title: App DB API
  version: v1
  description: |
    The App DB API allows developers to interact with AppDB, a NoSQL database 
    for storing arbitrary JSON documents. This API supports CRUD operations, 
    querying, and aggregation, enabling developers to manage data efficiently 
    within their Domo applications.
servers:
  - url: https://{instance}.domo.com
    description: Domo Instance
    variables:
      instance:
        default: api
        description: Your specific Domo instance name (e.g., mycompany)
security:
  - developerToken: []
tags:
  - name: Documents
    description: Manage individual documents in an AppDB collection.
  - name: Collections
    description: Manage AppDB collections (schema, permissions).
  - name: App DB API (Product)
    description: Manage documents and collections in AppDB.
paths:
  /api/datastores/v1/{datastoreId}:
    get:
      tags:
        - App DB API (Product)
      summary: Get Datastore
      description: Get a datastore by ID.
      parameters:
        - name: datastoreId
          in: path
          required: true
          schema:
            type: string
          description: >-
            The UUID of the datastore. Use the `id` field from the datastore
            object — **not** the numeric `datastore_id` field. For example,
            `98572030-591b-4b6e-94dd-817a30ec5e2f` is valid; `157944` is not.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Datastore'
              example:
                id: 98572030-591b-4b6e-94dd-817a30ec5e2f
                name: My App Datastore
                customer: mycompany
                owner: 870010733
                createdOn: '2026-06-24T21:17:18.767Z'
                updatedOn: '2026-06-24T21:17:18.767Z'
                updatedBy: 870010733
                datastore_id: 157944
                temporary: false
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                message: >-
                  No static resource api/datastores/v1/157944 for request
                  '/api/datastores/v1/157944'.
                status: 404
                statusReason: Not Found
                toe: 6NHUOBZXHJ-7JQU0-BAPQM
components:
  schemas:
    Datastore:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the datastore.
        name:
          type: string
          description: Name of the datastore.
        customer:
          type: string
          description: The Domo instance name this datastore belongs to.
        owner:
          type: integer
          description: User ID of the datastore owner.
        createdOn:
          type: string
          format: date-time
        updatedOn:
          type: string
          format: date-time
        updatedBy:
          type: integer
          description: User ID of the user who last updated the datastore.
        datastore_id:
          type: integer
          description: >-
            Internal numeric ID for the datastore. Present in Get and List
            responses; absent in the Create response.
        temporary:
          type: boolean
          description: Whether the datastore is temporary.
      example:
        id: 39b88a97-8247-4c0d-ba1d-8ed78d1a6680
        name: My App Datastore
        customer: mycompany
        owner: 870010733
        createdOn: '2024-01-15T18:42:17.293Z'
        updatedOn: '2024-01-15T18:42:17.293Z'
        updatedBy: 870010733
        datastore_id: 125691
        temporary: false
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message.
        status:
          type: integer
          description: HTTP status code.
        statusReason:
          type: string
          description: HTTP status reason phrase.
        toe:
          type: string
          description: Trace identifier for support; stands for Thread of Execution.
  securitySchemes:
    developerToken:
      type: apiKey
      in: header
      name: X-DOMO-Developer-Token
      description: Domo Developer Token for authentication.

````