> ## 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.

# List Datastores

> Get all datastores owned by the current user.



## OpenAPI

````yaml /openapi/product/appdb.yaml get /api/datastores/v1
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:
    get:
      tags:
        - App DB API (Product)
      summary: List Datastores
      description: Get all datastores owned by the current user.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Datastore'
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
  securitySchemes:
    developerToken:
      type: apiKey
      in: header
      name: X-DOMO-Developer-Token
      description: Domo Developer Token for authentication.

````