API referenceGET
Keyword change usage
Check the monthly keyword edit allowance and current usage.
GET
https://ai.redreplier.com/ai-app/api/v1/keywords/change-usageCheck the monthly keyword edit allowance and current usage.
Bearer Token (RedReplier API token)
Parameters
This endpoint does not take path or query parameters.
Request body
This endpoint does not require a JSON body.
Response
Returns current keyword edit usage.
limit(number): Monthly keyword edit allowance;-1means unlimited.used(number): Keyword edits used this month.remaining(number): Keyword edits remaining this month;-1means unlimited.unlimited(boolean): Whether the allowance is unlimited.
Notes
Only keyword edits count against this allowance. Adding and disabling keywords do not.
Errors
400 Bad Request: Invalid input, URL, UUID, enum, query parameter, or body.401 Unauthorized: Missing or invalid Bearer token.404 Not Found: The resource does not exist for the token account.500 Internal Server Error: Unexpected server error.
Example request (curl)
curl --request GET \
--url https://ai.redreplier.com/ai-app/api/v1/keywords/change-usage \
--header 'Authorization: Bearer redreplier_test_1234567890'200
{
"limit": 10,
"used": 3,
"remaining": 7,
"unlimited": false
}