QuotaLookup

Check how much quota is used/available for the current billing period, as well as additional information about the quota such as whether or not overages are enabled. This method can be performed for any quota to which your account has access (see acceptable values for `path` below).

JSON-RPC Method Name

quota.lookup

Request Parameters

path

string

The quota path specifies a particular quota for which to retrieve information (e.g. beta or production quotas). The quota used by a particular method is specified in the Quota Usage section at the bottom of the method documentation.

Acceptable Values:

api.limits.data.rows
api.limits.beta.rows

Response Values

quota

object

Sample Requests

Sample Response

1{
2  "quota": {
3    "path": "api.limits.beta.rows",
4    "account_id": 123456789,
5    "allotted": 100,
6    "used": 50,
7    "reset": "month",
8    "report": "day",
9    "overage": false,
10    "period_start": 1714546800,
11    "period_reset": 1717225200
12  }
13}

Quota Usage

Does not require any quota.

api.limits.beta.rows

Example Code

curl -X POST https://api.moz.com/jsonrpc \
-H "x-moz-token: <YOUR_MOZ_TOKEN>" \
-H "Content-Type: application/json" \
-d '
{
  "jsonrpc": "2.0",
  "id": "b9fcebd6-fa74-4e07-b7b0-026b752fdb80",
  "method": "quota.lookup",
  "params": {
    "data": {
      "path": "api.limits.data.rows"
    }
  }
}'