User Info Endpoint

The endpoint returns information about a user account. It is helpful to check the account balance status and other data. The /user endpoint can be authenticated only with a secret. The token is not accepted.

User information request example

[GET]
curl -X GET https://v2.convertapi.com/user -H "Authorization: Bearer YOUR_API_TOKEN"
[response]
{    
    "Secret": "secret_here",
    "ApiKey": 834345618,
    "Active": true,
    "FullName": "Name Surname",
    "Email": "[email protected]",
    "ConversionsTotal": 5000,
    "ConversionsConsumed": 1642 
}

Usage statistics information request example

The endpoint that returns information about your usage statistics based on the date range. The data can be returned in either JSON or a comma-separated values (CSV) format depending on a Accept header value. Please set one of the following headers to your request:

  • Accept: application/json
  • Accept: text/csv
[GET]
curl -X GET "https://v2.convertapi.com/user/statistic?startDate=2020-01-01&endDate=2020-02-01" -H "Authorization: Bearer YOUR_API_TOKEN"