---
title: "GET /connectors/{connector_id}/store"
method: GET
path: "/connectors/{connector_id}/store"
tags: ["connectors"]
---

# GET /connectors/{connector_id}/store

`GET /connectors/{connector_id}/store`

## Path parameters

- `connector_id` string, uuid, required

## Response `200`

Connector's LLM information store

- ConnectorStoreResponse
  - `store` LlmInformationStore — Information store for connector schema Hierarchical structure: Connector → Database → Schema → Table → Column Works for both relational databases and API-based data. Distinguishes between the two by presence of `endpoint` on tables: - Relational DB: all tables have `endpoint: None` - API: all tables have `endpoint: Some(...)`
    - `databases` ConnectorDatabaseInfo[], required — List of databases in this connector
      - `description` string, nullable
      - `id` string, uuid, required
      - `name` string, required
      - `notes` string, nullable
      - `schemas` ConnectorSchemaInfo[], required
        - `description` string, nullable
        - `id` string, uuid, required
        - `name` string, required
        - `notes` string, nullable
        - `tables` ConnectorTable[], required
          - `columns` ConnectorColumn[], required — List of columns in this table/resource
            - `name` string, required — Name of the column
            - `notes` string, nullable — Additional notes about the column
            - `type` string, required — SQL type of the column (e.g., "VARCHAR(255)", "INTEGER") or API field type
          - `description` string, nullable — Optional description
          - `endpoint` string, nullable — API endpoint (None for relational DB tables, Some for API resources)
          - `id` string, uuid, required
          - `name` string, required — Name of the table or resource
          - `notes` string, nullable — Optional notes
    - `uses_default_hierarchy` boolean, required — Whether this store uses default auto-generated database/schema names (i.e., database and schema names match the connector name). When true, UIs should hide the database/schema hierarchy. When false, UIs should show the full database → schema → table hierarchy.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden - user does not have access to connector
- `404` — Connector not found

---

[API](https://skmtc.net/structifyai/apis/structify.md) · [All operations](https://skmtc.net/structifyai/apis/structify/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/structifyai/structify/versions/1364930b6980/schema)
