OpenSea · Schema

RateLimitsResponse

Rate limits for the API key

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
read string Read rate limit
write string Write rate limit
fulfillment string Fulfillment rate limit
View JSON Schema on GitHub

JSON Schema

RateLimitsResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/RateLimitsResponse",
  "title": "RateLimitsResponse",
  "type": "object",
  "description": "Rate limits for the API key",
  "properties": {
    "read": {
      "type": "string",
      "description": "Read rate limit",
      "example": "60/m"
    },
    "write": {
      "type": "string",
      "description": "Write rate limit",
      "example": "5/m"
    },
    "fulfillment": {
      "type": "string",
      "description": "Fulfillment rate limit",
      "example": "5/m"
    }
  },
  "required": [
    "fulfillment",
    "read",
    "write"
  ]
}