Skip to content

Authentication

The Hyperion API uses Bearer token authentication to identify users with premium plans.

Usage

To authenticate your requests, include your API key in the Authorization header:

bash
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.sylvain.pro/v2/infos

Rate Limits

PlanRequests/hour
Free2,000
Advanced3,500
Pro6,000
Business10,000

Error Responses

Invalid Token

If the provided token is incorrect or expired:

json
{
  "message": "Unauthorized",
  "error": "Invalid token.",
  "status": "401"
}

No Token

If no token is provided, the request uses the FREE tier limits (2,000 requests/hour).