> ## 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 schemas for a saved connector

> Lists available schemas on the target using a saved connector's configuration. Pass 'databaseName' as a query parameter.



## OpenAPI

````yaml https://raw.githubusercontent.com/artie-labs/artie-api-spec/refs/heads/master/openapi.yaml get /connectors/{uuid}/schemas
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}/schemas:
    get:
      tags:
        - Connectors
      summary: Fetch schemas for a saved connector
      description: >-
        Lists available schemas on the target using a saved connector's
        configuration. Pass 'databaseName' as a query parameter.
      operationId: connector_fetch_schemas
      parameters:
        - in: path
          name: uuid
          required: true
          schema:
            type: string
        - in: query
          name: databaseName
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListResponseBodySchemaResponse'
          description: OK
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
components:
  schemas:
    ListResponseBodySchemaResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/PayloadsSchemaResponse'
          type: array
      required:
        - items
      type: object
    PayloadsSchemaResponse:
      properties:
        name:
          type: string
        unreadable:
          type: boolean
        unreadableReason:
          type: string
      type: object
  securitySchemes:
    ApiKey:
      description: API key passed as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````