Fovea.Billing

is now IAPTIC, please go to the new and better version of our system.

API Authentication

Authenticated requests require that you send your application name and secret api key.

You will find your appName and apiKey in the Settings page.

Using query parameters

You can send appName and apiKey as query parameters, as such:

https://validator.fovea.cc/v1/some-api?appName=my-app-name&apiKey=12319-12398-12381

Using auth header

You can also send them as Authorization header. Use the application name as the username and secret key as password. Example:

Authorization: Basic ${base64(appName + ':' + apiKey)}