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

# Fetch databases for a saved connector

> Lists available databases on the target using a saved connector's configuration. Response metadata may include Iceberg S3 table bucket maintenance defaults.



## OpenAPI

````yaml https://raw.githubusercontent.com/artie-labs/artie-api-spec/refs/heads/master/openapi.yaml get /connectors/{uuid}/databases
openapi: 3.1.0
info:
  description: External API endpoints for Artie
  title: Artie API
  version: v1.0.81
servers:
  - url: https://api.artie.com
security:
  - ApiKey: []
paths:
  /connectors/{uuid}/databases:
    get:
      tags:
        - Connectors
      summary: Fetch databases for a saved connector
      description: >-
        Lists available databases on the target using a saved connector's
        configuration. Response metadata may include Iceberg S3 table bucket
        maintenance defaults.
      operationId: connector_fetch_databases
      parameters:
        - in: path
          name: uuid
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayloadsConnectorFetchDatabasesResponse'
          description: OK
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
components:
  schemas:
    PayloadsConnectorFetchDatabasesResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/PayloadsDatabaseListItem'
          type:
            - array
            - 'null'
        metadata:
          items:
            $ref: '#/components/schemas/PayloadsCatalogTableProperty'
          type: array
      type: object
    PayloadsDatabaseListItem:
      properties:
        name:
          type: string
      type: object
    PayloadsCatalogTableProperty:
      properties:
        isDate:
          type: boolean
        key:
          type: string
        value:
          $ref: '#/components/schemas/PayloadsJSONValue'
      type: object
    PayloadsJSONValue:
      anyOf:
        - $ref: '#/components/schemas/PayloadsJsonValueString'
        - $ref: '#/components/schemas/PayloadsJsonValueNumber'
        - $ref: '#/components/schemas/PayloadsJsonValueBoolean'
        - $ref: '#/components/schemas/PayloadsJsonValueObject'
        - $ref: '#/components/schemas/PayloadsJsonValueArray'
        - $ref: '#/components/schemas/PayloadsJsonValueNull'
    PayloadsJsonValueString:
      oneOf:
        - type: string
      type: string
    PayloadsJsonValueNumber:
      oneOf:
        - type: number
      type: number
    PayloadsJsonValueBoolean:
      oneOf:
        - type: boolean
      type: boolean
    PayloadsJsonValueObject:
      additionalProperties: true
      type: object
    PayloadsJsonValueArray:
      items:
        $ref: '#/components/schemas/PayloadsJsonValueArrayItem'
      type: array
    PayloadsJsonValueNull:
      oneOf:
        - type: 'null'
      type: 'null'
    PayloadsJsonValueArrayItem:
      anyOf:
        - $ref: '#/components/schemas/PayloadsJsonValueString'
        - $ref: '#/components/schemas/PayloadsJsonValueNumber'
        - $ref: '#/components/schemas/PayloadsJsonValueBoolean'
        - $ref: '#/components/schemas/PayloadsJsonValueObject'
        - $ref: '#/components/schemas/PayloadsJsonValueNull'
  securitySchemes:
    ApiKey:
      description: API key passed as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````