DetectLanguage · Schema

Account Status

Account usage status and plan information returned by the /account/status endpoint of the DetectLanguage API.

Language DetectionNatural Language ProcessingText AnalysisMachine-LearningMultilingual

Properties

Name Type Description
date string Today's date in UTC timezone (YYYY-MM-DD format).
requests integer Number of API requests sent today.
bytes integer Number of text bytes sent today.
plan string Plan code identifier. Empty string for the free tier.
plan_expires stringnull Plan expiration date (YYYY-MM-DD), or null if there is no plan or no expiry date.
daily_requests_limit integer Maximum number of API requests allowed per day. 0 means the free tier daily quota applies.
daily_bytes_limit integer Maximum number of bytes allowed per day. 0 means the free tier daily quota applies.
status string Current account status. Either ACTIVE (account is in good standing) or SUSPENDED (account has been suspended).
View JSON Schema on GitHub

JSON Schema

account-status.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/detectlanguage/refs/heads/main/json-schema/account-status.json",
  "title": "Account Status",
  "description": "Account usage status and plan information returned by the /account/status endpoint of the DetectLanguage API.",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "format": "date",
      "description": "Today's date in UTC timezone (YYYY-MM-DD format).",
      "example": "2018-04-07"
    },
    "requests": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of API requests sent today.",
      "example": 1510
    },
    "bytes": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of text bytes sent today.",
      "example": 19843
    },
    "plan": {
      "type": "string",
      "description": "Plan code identifier. Empty string for the free tier.",
      "example": ""
    },
    "plan_expires": {
      "type": ["string", "null"],
      "format": "date",
      "description": "Plan expiration date (YYYY-MM-DD), or null if there is no plan or no expiry date.",
      "example": null
    },
    "daily_requests_limit": {
      "type": "integer",
      "minimum": 0,
      "description": "Maximum number of API requests allowed per day. 0 means the free tier daily quota applies.",
      "example": 1000
    },
    "daily_bytes_limit": {
      "type": "integer",
      "minimum": 0,
      "description": "Maximum number of bytes allowed per day. 0 means the free tier daily quota applies.",
      "example": 0
    },
    "status": {
      "type": "string",
      "enum": ["ACTIVE", "SUSPENDED"],
      "description": "Current account status. Either ACTIVE (account is in good standing) or SUSPENDED (account has been suspended).",
      "example": "ACTIVE"
    }
  },
  "required": ["date", "requests", "bytes", "plan", "plan_expires", "daily_requests_limit", "daily_bytes_limit", "status"],
  "examples": [
    {
      "date": "2018-04-07",
      "requests": 1510,
      "bytes": 19843,
      "plan": "",
      "plan_expires": null,
      "daily_requests_limit": 0,
      "daily_bytes_limit": 0,
      "status": "ACTIVE"
    }
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/account-status"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.