Skip to main content
This quickstart shows the public runtime API flow:
  1. Get a sourceId
  2. Create a source API key
  3. Call runtime endpoints with x-api-key

1. Get your sourceId

In the Synthbrew app, open your source and copy its ID. Your runtime endpoint base is:

2. Create a source API key

Create a key from the source API keys UI or via the app API. Keep the returned key safe. It is shown only once.

3. Call runtime endpoints

Use x-api-key on every request.

Querying list endpoints

GET /runtime/{sourceId}/{table} supports:
  • limit, offset
  • fields=id,name,status
  • sort=created_at:desc
  • filters.status.$eq=paid
  • filters.total.$gte=50
  • populate=customer_id
  • populate.customer_id.fields=id,name
Example:
For full parameter and response schemas, see Runtime API reference.