OpenUV · Schema

OpenUV API Statistics

Per-key request and cost statistics.

WeatherUV IndexSunSolarGeolocationForecastPublic APIs

Properties

Name Type Description
result object
View JSON Schema on GitHub

JSON Schema

openuv-api-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/openuv/main/json-schema/openuv-api-statistics-schema.json",
  "title": "OpenUV API Statistics",
  "description": "Per-key request and cost statistics.",
  "type": "object",
  "required": ["result"],
  "properties": {
    "result": {
      "type": "object",
      "properties": {
        "requests_today": { "type": "integer" },
        "requests_yesterday": { "type": "integer" },
        "requests_month": { "type": "integer" },
        "requests_last_month": { "type": "integer" },
        "cost_today": { "type": "number" },
        "cost_yesterday": { "type": "number" },
        "cost_month": { "type": "number" },
        "cost_last_month": { "type": "number" }
      }
    }
  }
}