curl --request POST \
--url https://partner.peaka.studio/api/v1/data/projects/{projectId}/catalogs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "exampleAirtableCatalog",
"connectionId": "8db17e23-29de-4dab-8886-af9717e0e742"
}
'{
"id": "626654862255325504",
"name": "exampleairtablecatalog",
"displayName": "exampleAirtableCatalog",
"catalogType": "airtable",
"connectionId": "8db17e23-29de-4dab-8886-af9717e0e742"
}Create Catalog
Creates a new catalog in the specified project. A catalog represents a connected data source — such as Airtable, Stripe, or Google Sheets — that exposes its schemas and tables for querying within Peaka. Requires a name and a connectionId referencing an existing connection. Some connectors accept additional extraParameters (e.g., Google Sheets requires specifying which sheets to include).
curl --request POST \
--url https://partner.peaka.studio/api/v1/data/projects/{projectId}/catalogs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "exampleAirtableCatalog",
"connectionId": "8db17e23-29de-4dab-8886-af9717e0e742"
}
'{
"id": "626654862255325504",
"name": "exampleairtablecatalog",
"displayName": "exampleAirtableCatalog",
"catalogType": "airtable",
"connectionId": "8db17e23-29de-4dab-8886-af9717e0e742"
}

Authorizations
Use the Authorization header with the value 'Bearer ' to authenticate. Partner API Keys have full access; Project API Keys are limited to their project scope. Learn more: https://docs.peaka.com/api-reference/authentication
Path Parameters
ID of the project
Body
Catalog Request
Response
Catalog created successfully
This class represents a Catalog. It contains the id, name, display name, type, and connection ID of the catalog.