Skip to main content
POST
/
public
/
catalogs
POST Create Catalog
curl --request POST \
  --url https://api.example.com/public/catalogs
curl -X POST https://catalogapi.rastro.ai/api/public/catalogs \
  -H "Authorization: Bearer rastro_pk_..." \
  -H "Content-Type: application/json" \
  -d '{"name": "Products", "unique_id_field": "sku"}'
Response:
{
  "id": "cat_123",
  "name": "Products",
  "unique_id_field": "sku"
}