RelayAPI
Usage
GET
/v1/usage
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

curl -X GET "https://api.relayapi.dev/v1/usage"
{
  "plan": {
    "name": "string",
    "posts_limit": 0,
    "api_calls_per_min": 0
  },
  "usage": {
    "posts_used": 0,
    "posts_limit": 0,
    "cycle_start": "2019-08-24T14:15:22Z",
    "cycle_end": "2019-08-24T14:15:22Z",
    "cycle_resets_at": "2019-08-24T14:15:22Z"
  },
  "api_calls": {
    "current_minute": 0,
    "limit_per_minute": 0
  }
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {
      "property1": null,
      "property2": null
    }
  }
}