REST API

Create integrations, retrieve data, and automate your workflows, build with the Gobo REST API.

API Base URL
https://api.gobo.io

API Tokens

Gobo authenticates your API requests using your tenant's API tokens. API requests made without authentication or using an incorrect token will return a403 error. All API requests must be made over HTTPS.

You can view and manage your API tokens in the Gobo Dashboard.

Set Authorization Header
curl -H "Authorization: Token $GOBO_API_TOKEN" https://api.gobo.io/

Keep your Tokens Secure

API tokens can perform any action in your Gobo tenant. They must be kept secure and private. Be sure to prevent your API tokens from being made publicly accessible, such as in client-side code, GitHub, unsecured S3 buckets, and so forth. API Tokens are prefixed with gt_.

Pagination

Gobo utilizes pagination for list operations. You can request a particular page number by passing the page query parameter. Paginated responses return the following format:

HTTP 200 OK
{
    "count": 816,
    "next": "https://api.gobo.io/user/~/orgs?page=3",
    "previous": "https://api.gobo.io/user/~/orgs",
    "results": [
       …
    ]
}

Endpoints

See the Gobo Management API Docs for endpoint definitions.

Last updated