v3

latestOpenAPI 3.1.2Apache 2.02026-07-31231237972.0 KB
Users/Usage

Get limits

Returns a complete summary of your account's limits. It is the same information you will see on your account's Limits page. The returned data includes the current usage cycle, a summary of your limits, and your current usage.

get/v2/users/me/limits

Response

Example response

{
  "data": {
    "monthlyUsageCycle": {
      "startAt": "2022-10-02T00:00:00.000Z",
      "endAt": "2022-11-01T23:59:59.999Z"
    },
    "limits": {
      "maxMonthlyUsageUsd": 300,
      "maxMonthlyActorComputeUnits": 1000,
      "maxMonthlyExternalDataTransferGbytes": 7,
      "maxMonthlyProxySerps": 50,
      "maxMonthlyResidentialProxyGbytes": 0.5,
      "maxActorMemoryGbytes": 16,
      "maxActorCount": 100,
      "maxActorTaskCount": 1000,
      "maxConcurrentActorJobs": 256,
      "maxTeamAccountSeatCount": 9,
      "dataRetentionDays": 90,
      "maxScheduleCount": 100
    },
    "current": {
      "monthlyUsageUsd": 43,
      "monthlyActorComputeUnits": 500.784475,
      "monthlyExternalDataTransferGbytes": 3.00861903931946,
      "monthlyProxySerps": 34,
      "monthlyResidentialProxyGbytes": 0.4,
      "actorMemoryGbytes": 8,
      "actorCount": 31,
      "actorTaskCount": 130,
      "teamAccountSeatCount": 5,
      "scheduleCount": 77
    }
  }
}