agrio · Schema

Credit Balance

Current API credit balance for the authenticated account.

AgriculturePlant DiseasePest DetectionAICrop Advisory

Properties

Name Type Description
balance integer Number of available credits remaining.
currency string Credit unit type.
account_id string Unique identifier for the API account.
View JSON Schema on GitHub

JSON Schema

agrio-credit-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agrio/refs/heads/main/json-schema/agrio-credit-balance-schema.json",
  "title": "Credit Balance",
  "description": "Current API credit balance for the authenticated account.",
  "type": "object",
  "properties": {
    "balance": {
      "type": "integer",
      "description": "Number of available credits remaining.",
      "example": 450
    },
    "currency": {
      "type": "string",
      "description": "Credit unit type.",
      "example": "credits"
    },
    "account_id": {
      "type": "string",
      "description": "Unique identifier for the API account.",
      "example": "acc-500123"
    }
  },
  "required": [
    "balance",
    "currency"
  ]
}