Overview
Getting started
🚀 Getting Started
To begin using the API:
- Sign up at usescrub.io to request an API key.
- Use tools like Postman, Insomnia, or your preferred HTTP client.
- Make POST/GET requests to the appropriate endpoint with the correct JSON payload.
In the authentication request, your app will utilize the client_credentials OAuth 2.0 flow.
Details on this flow can be found at https://www.oauth.com/oauth2-servers/access-tokens/client-credentials/
Example request to /verify-bvn:
POST /verify-bvn
Content-Type: application/json
{
"bvn": "22345678901"
}httpExpected response:
{
"valid": true,
"full_name": "Adebola James",
"phone_number": "08031234567"
}json