Development arrow right Api

API Authentication

To explore the Tembo Cloud API, visit our API documentation.

Create a personal access token

After logging in to Tembo Cloud, navigate here to issue a token: https://cloud.tembo.io/generate-jwt

To revoke a token, please follow guidance in the documentation here.

Test an API request

Then, you can use this token in API requests to Tembo Cloud, for example:

export TOKEN='******'

curl "https://api.tembo.io/api/v1/orgs/instances/schema" \
  -H "authorization: Bearer ${TOKEN}"

Finding Your Organization ID

Your organization ID is required for many API operations. You can find it in your browser’s URL bar when viewing any organization page in Tembo Cloud:

https://cloud.tembo.io/orgs/<organization_id>/instances

For example, if your URL shows https://cloud.tembo.io/orgs/org_XUqLsfs68qaXFkTooDEUnNzI3wA/instances, your organization ID would be org_XUqLsfs68qaXFkTooDEUnNzI3wA.

Next

chevron right arrow

Docs

Home