Account Management
Last updated:2024-12-03
Account Quota
You can use the API to query the remaining number of available emails under your account.
URL
https://email.api.engagelab.cc/v1/account/quota
https://email.api.engagelab.cc/v1/account/quota
This code block in the floating window
HTTP Request Method
Get
Get
This code block in the floating window
Request Body Type
Content-Type: application/json
Content-Type: application/json
This code block in the floating window
Request Header
Header | Type | Required | Description |
---|---|---|---|
Authorization | string | Yes | Basic base64(api_user:api_key) |
Request Parameters
None
Response
{
"result": {
"account_quota": 7160,
"daily_quota": 2000000,
"daily_quota_used": 0
}
}
{
"result": {
"account_quota": 7160,
"daily_quota": 2000000,
"daily_quota_used": 0
}
}
This code block in the floating window