Welcome to the Ally API Reference — your gateway to unlocking structured access to Nigeria’s online voice.
This page will guide you through how to interact with the ALLY API, what data you can access, and the best practices for building powerful, context-aware integrations.
Ally API uses Bearer Token Authentication to authorize all requests.To interact with the API, you’ll need to include your Secret API Key in the Authorization header of every request. This key is a secure JSON Web Token (JWT) and should be stored safely on your backend — never expose it on the client side.Example:
Copy
curl -X GET "https://api.ally.com/v1/users"
Key Guidelines:
Your Secret API Key grants full access — keep it secure and private.
You can manage and regenerate your keys anytime via the Ally Developer Dashboard.
Ally enforces a limit of 60 requests per minute. If you exceed this rate, the API will respond with a 429 Too Many Requests error. Consider implementing retries with exponential backoff in your integration.