> For the complete documentation index, see [llms.txt](https://api-docs.espysys.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.espysys.com/retrieve-credits-status-api/search-response-schema.md).

# Search Response Schema

```
{
  "type": "object",
  "properties": {
    "balance": {
      "type": "number",
      "description": "Remaining balance in decimal format."
    },
    "currency": {
      "type": "string",
      "description": "Currency symbol for the balance (e.g., €, $, etc.)."
    },
    "credits": {
      "type": "integer",
      "description": "Available credit count in integer format."
    },
    "expiratioDate": {
      "type": "string",
      "format": "date-time",
      "description": "Expiration date of the credits in ISO 8601 format."
    },
    "status": {
      "type": "string",
      "description": "Current account status, e.g., 'Active' or 'Inactive'."
    }
  },
  "required": ["balance", "currency", "credits", "expiratioDate", "status"],
  "additionalProperties": false
}

```
