# mearef Middle Eastern Government Reference Data

> mearef Middle Eastern Government Reference Data is a paid API for AI agents from mearef.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns structured government reference data (policy rates, VAT, wages, taxes, CPI, holidays) for Middle Eastern countries by country code and series.

## Facts

- Endpoint: GET https://mearef.dev/v1/:country/:series
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mearef-middle-eastern-government-reference-data-c499909d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_80AM1wEF94VEjNhYwImqW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mearef-middle-eastern-government-reference-data-c499909d
```

Example prompt: What is the current VAT rate in Saudi Arabia? Pull the mearef reference data for 'sa' and the 'vat' series.

## When to prefer this

Choose this endpoint when you need authoritative, structured government reference figures (tax rates, policy rates, wages, CPI, holidays) for Middle Eastern countries (GCC + Israel, Jordan, Iraq) in a machine-readable format with sourcing and staleness metadata. Prefer it over general web search when you need consistent schema output, provenance tracking, and low per-call cost for automated pipelines.

## Known failure modes

- Unsupported country code (only ae, bh, il, iq, jo, kw, om, qa, sa are valid) returns an error
- Unsupported series identifier (only policy-rate, vat, minimum-wage, public-holidays, cpi, corporate-tax, income-tax are valid) returns an error
- Stale flag set to true when data has not been updated within expected cycle — values may be outdated
- Payment failure via x402 protocol returns 402 if USDC balance is insufficient
- Network timeout or service unavailability returns 5xx error

## How this service works

Government reference data series

## Output

A JSON object containing the country code, series identifier, current value (numeric for rates/wages or array of date-name objects for holidays), the effective-from date, last confirmed date, source name and URL, a staleness flag indicating whether the data is past its expected update cycle, and optionally a unit, notes, and component breakdown for composite rates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "country",
      "series"
     ],
     "properties": {
      "series": {
       "enum": [
        "policy-rate",
        "vat",
        "vat-registration-threshold",
        "minimum-wage",
        "public-holidays",
        "cpi",
        "corporate-tax",
        "withholding-tax",
        "statutory-interest",
        "income-tax",
        "social-contributions"
       ],
       "type": "string",
       "description": "Reference series id"
      },
      "country": {
       "enum": [
        "ae",
        "bh",
        "il",
        "iq",
        "jo",
        "kw",
        "om",
        "qa",
        "sa"
       ],
       "type": "string",
       "description": "ISO country code"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mearef-middle-eastern-government-reference-data-c499909d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mearef.dev](https://www.zero.xyz/host/mearef.dev/llms.txt)
