VUZDevelopers

Get עוסק פטור threshold tracking

GET
/analytics/vat/threshold

Tracks annual turnover against the עוסק פטור threshold (currently ₪120,000).

Data Returned:

  • Current year-to-date turnover
  • Remaining amount before threshold
  • Percentage of threshold reached
  • Projected year-end turnover
  • Warning level and recommendations
  • Monthly breakdown
X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Query Parameters

year?number

Year for trend data (defaults to current year)

Response Body

application/json

application/json

curl -X GET "https://example.com/analytics/vat/threshold"
{  "status": {    "currentTurnover": 0,    "threshold": 0,    "remaining": 0,    "percentage": 0,    "projectedYearEnd": 0,    "warning": "none",    "recommendation": "string",    "recommendationEn": "string"  },  "monthlyBreakdown": [    {      "month": "string",      "label": "string",      "labelEn": "string",      "turnover": 0,      "cumulative": 0    }  ],  "currency": "string",  "year": 0,  "isApplicable": true,  "businessType": "osek_patur"}