Skip to main content

API Keys

Truedy uses API keys to authenticate requests. You can manage your API keys in the Truedy Dashboard.

Key Format

All Truedy API keys follow a standard format: truedy_ followed by a random alphanumeric string. Example: truedy_e4JzsKsEPZgCydwcsAZqOGrHo9yglOHk

How to use your API key

All requests to the Truedy Public API must include an Authorization header with your API key.
Authorization: Bearer YOUR_API_KEY

Example Request

curl https://api.truedy.ai/api/public/v1/agents \
  -H "Authorization: Bearer truedy_your_api_key_here"

Security Best Practices

  • Never share your API keys. Treat them like passwords.
  • Do not commit API keys to version control. Use environment variables instead.
  • Rotate your keys regularly. If a key is compromised, revoke it immediately in the dashboard and create a new one.
  • Limit IP Access. You can whitelist specific IP addresses for your API keys in the dashboard for added security.