Account status API
Return the status of an account on 42matters.
Definition
Endpoint:
GET
https://data.42matters.com/api/v2.0/account.json
Parameters
Name |
Required |
Description |
Available Values |
Default |
access_token |
required |
Your access token for using this API. You can get it for FREE by
signing up
.
|
|
|
callback |
optional |
If supplied, the response will use the JSONP format with a callback of the given
name.
|
|
|
Responses
Status Code |
Indication |
Content-Type |
Body |
200 |
Everything is OK |
application/json |
Account status object |
402 |
Your request exceeds what's allowed by your current subscription plan |
application/json |
Error object |
403 |
Your access token is not valid |
application/json |
Error object |
429 |
Your request rate is over the limit |
application/json |
Error object |
Example Request
This request can also be imported into Postman.
Check out our Postman integration guide.
Example Response
{
"type": "Free",
"status": "OK",
"upcoming_invoice": null,
"monthly_quota": {
"export": 1000,
"api": 1000
},
"remaining_monthly_quota": {
"export": 42,
"api": 1000
}
}
Last Modified: 03 May 2023