Authorization header.
Prerequisites
- A TechnologyChecker account (sign up free)
- Access to the Settings > Developers section in the dashboard
Key formats
| Type | Prefix | Use case |
|---|---|---|
| Live | tapi_live_ | Production requests that consume credits |
| Test | tapi_test_ | Development and testing (limited functionality) |
How to get your API key
Sign in
Go to app.technologychecker.io and sign in to your account.
Example request
All
/v1/* endpoints require authentication. Account endpoints like /v1/usage and /v1/credits do not consume credits.Related pages
Rate limits
Request limits by plan and retry strategies.
Credits
Credit costs per endpoint and plan details.
Errors
Error codes, response format, and retry logic.
API reference
Explore all endpoints with interactive examples.
Frequently asked questions
How do I keep my API key secure?
How do I keep my API key secure?
Don’t expose your API key in client-side code, public repositories, or logs. Store it in environment variables or a secrets manager. If your key gets compromised, revoke it immediately from Settings > Developers and generate a new one.
Can I have multiple API keys?
Can I have multiple API keys?
Each organization gets a single API key with encrypted storage. Usage is tracked via credits with a monthly reset date. All team members in your organization share the same key.
What happens if my API key is invalid?
What happens if my API key is invalid?
The API returns HTTP
401 with error code UNAUTHORIZED and the message “Missing or invalid API key.” Verify your Authorization header uses the format Bearer YOUR_API_KEY. See errors for all error codes.