Skip to main content

Obtaining Your API Key

To use the Tidyhire API, you need an API key. You can generate one from your Tidyhire Dashboard.
  1. Navigate to Settings > API Keys in your Tidyhire Dashboard.
  2. Click + Create API Key.
Tidyhire API Keys Settings

Using Your API Key

Include your API key in the x-tidyhire-api-key header with every request.
curl -X GET https://api.tidyhire.app/public/ \
  -H "x-tidyhire-api-key: YOUR_API_KEY"

Security Best Practices

  • Never expose your API key in client-side code or public repositories
  • Store your API key in environment variables or a secrets manager
  • Rotate your API key periodically from the Tidyhire Dashboard
  • Use separate keys for development and production environments