Authentication

To use the TigerGraph Cloud 4 REST APIs, you need to authenticate your requests. Authentication is typically done using API keys.

The TigerGraph Cloud 4 REST API is currently in preview version. Features and endpoints may change as the API evolves.

Setup API Keys

Before you can authenticate your API requests, you need to set up your API keys. Please refer to the API Key Setup page for detailed instructions on how to generate and manage your API keys.

Example Request

Here’s an example of how to consume the APIs using your API key:

curl -X GET "https://api.tgcloud.io/users" \
     -H 'accept: application/json' \
     -H "Authorization: Bearer <your-api-key>"