API Access
GET /access/verify
Verifies a signup token and returns a new free-tier API key.
No API key is required for this endpoint.
Expects
Query parameters:
| Parameter | Type | Description |
|---|---|---|
token |
string | Verification token from the signup email. Required. |
Returns
{
"data": {
"status": "verified",
"tier": "free",
"email": "you@example.com",
"apiKey": "arev_live_...",
"dailyLimit": 2500
}
}
Example
curl "https://api.arevdata.com/access/verify?token=TOKEN_FROM_EMAIL"