Skip to main content
Kinetic uses bearer tokens for authentication. DO NOT share your tokens with anyone. Tokens are scoped to your Kinetic tenant. There are two steps:
  1. Create a token
  2. Use the token in your requests

Create a token

  1. Go to your Kinetic dashboard and click on “Settings”.
  2. Click on “API Keys”.
  3. Click on “Create API Key”.
  4. Enter a name for your API key.
  5. Click on “Create”.
  6. Copy the API key.

Use a token

Include the Authorization: Bearer <token> header on every request: Example:
curl --header "Authorization: Bearer $KINETIC_API_KEY" \
     "https://api.kineticsystems.ai/api/workflows"