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]
https://v2.convertapi.com/user?secret=secret_here
[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]
https://v2.convertapi.com/user/statistic?secret=secret_here&startDate=2020-01-01&endDate=2020-02-01
Updated 4 months ago