Developers

API Getting Started

1 min read

Make your first TablelistPro API request in minutes so your integration can authenticate, call endpoints, and move safely into production.

In the API, table reservations are admission groups with type set to TABLE. Guest list, tally, and ticket rows are also admission groups and use the same core endpoints.

Base URL

Production:

https://api.tablelist.com/2025-03

Development (when applicable):

https://api-dev.tablelist.com/2025-03

Authentication

All requests must include your API key in the x-tl-api-key header.

To create a key, open the sidebar, click Settings, then Developers, then API Keys.

curl https://api.tablelist.com/2025-03/ping -H "x-tl-api-key:{api-key}"

Replace {api-key} with your organization API key.

Key safety

  • Never commit API keys to source control.
  • Rotate any exposed key from Settings -> Developers -> API Keys.
  • Use separate keys for staging and production integrations.

Next steps