API Key Authentication
All Tellscope API requests are authenticated using an API key. Unlike traditional REST APIs that use headers, the Tellscope GraphQL API accepts the API key as a parameter in each query or mutation.API Key Format
Your API key follows this format:- Prefix:
tellscp_sk_(identifies it as a Tellscope secret key) - Suffix: Unique alphanumeric identifier
Using Your API Key
Pass theapiKey parameter in every query or mutation:
Managing Your API Key
Generate a New Key
- Log in to Tellscope Dashboard
- Go to Settings → API
- Click Generate API Key
- Copy and store the key securely
Regenerate Key
If your API key is compromised:- Go to Settings → API
- Click Revoke & Regenerate
- Confirm the action
- Update your applications with the new key
Security Best Practices
Server-side only
Never expose your API key in client-side code, mobile apps, or public repositories.
Environment variables
Store your API key in environment variables, not in source code.
Rotate regularly
Regenerate your API key periodically as a security measure.
Monitor usage
Check the dashboard for unusual API activity.

