SEBRA

Bulgarian SEBRA public payment analytics (egovbg_sebra_days).

OpenAPI
/openapi.json
Payment
x402 · $0.01 USDC · Base, Polygon, Arbitrum One
GET/api/sebra/getPeriodsWithMostPaymentsx402 paid

Periods with the largest payment sums

Which calendar slots (days, months, or weekdays) have the largest SEBRA payment sums and how many payments.

ParamInTypeDescription
period (required)querystringOne of: days, months, weekdays. Or pass as flag ?days / ?months / ?weekdays.
fromquerystringInclusive start (DD-MM-YYYY or MM-YYYY).
toquerystringInclusive end (DD-MM-YYYY or MM-YYYY).
currencyquerystringBGN or EUR. Omit to group by currency.
yearqueryintegerRestrict to one calendar year.
limitqueryintegerMax rows after sorting by amount.
GET https://api.datanexusai.org/api/sebra/getPeriodsWithMostPayments?period=days&from=01-10-2020&to=01-11-2020

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

Example response shape:

{
  "endpoint": "getPeriodsWithMostPayments",
  "period": "days",
  "count": 1,
  "items": [
    {
      "day_of_month": 28,
      "total_amount": "1234567.89",
      "payment_count": 42
    }
  ]
}
GET/api/sebra/getTaxonomyForYearx402 paid

SEBRA taxonomy for a calendar year

Where money went in a year: Salaries, Maintenance, Capital expenditure, etc.

ParamInTypeDescription
year (required)queryintegerCalendar year.
currencyquerystringBGN or EUR.
GET https://api.datanexusai.org/api/sebra/getTaxonomyForYear?year=2019

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

Example response shape:

{
  "endpoint": "getTaxonomyForYear",
  "year": 2019,
  "items": [
    {
      "category": "Заплати",
      "category_key": "salaries",
      "total_amount": "500000.00"
    }
  ]
}
GET/api/sebra/getTaxonomyForYear/{year}x402 paid

SEBRA taxonomy for a calendar year (path)

Same as getTaxonomyForYear with year in the path.

ParamInTypeDescription
year (required)pathintegerCalendar year.
currencyquerystringBGN or EUR.
GET https://api.datanexusai.org/api/sebra/getTaxonomyForYear/2019

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

GET/api/sebra/getTaxonomyForPeriodx402 paid

SEBRA taxonomy for a date window

Same account buckets as getTaxonomyForYear, for from/to dates.

ParamInTypeDescription
from (required)querystringStart date DD-MM-YYYY or MM-YYYY.
toquerystringEnd date; defaults to today.
currencyquerystringBGN or EUR.
GET https://api.datanexusai.org/api/sebra/getTaxonomyForPeriod?from=01-10-2020&to=01-11-2020

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

GET/api/sebra/getMostSponsoredProgrammex402 paid

Most sponsored programmes

Programmes ranked by total amount (then payment count).

ParamInTypeDescription
yearqueryintegerCalendar year (or use from/to).
fromquerystringWindow start DD-MM-YYYY or MM-YYYY.
toquerystringWindow end.
currencyquerystringBGN or EUR.
limitqueryintegerMax programmes.
GET https://api.datanexusai.org/api/sebra/getMostSponsoredProgramme?year=2019

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

GET/api/sebra/getMostSponsoredProgramme/{year}x402 paid

Most sponsored programmes (path year)

Same as getMostSponsoredProgramme with year in the path.

ParamInTypeDescription
year (required)pathintegerCalendar year.
currencyquerystringBGN or EUR.
limitqueryintegerMax programmes.
GET https://api.datanexusai.org/api/sebra/getMostSponsoredProgramme/2019

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

GET/api/sebra/getUnusualPaymentsx402 paid

Unusual SEBRA payment activity

Unusual days, programmes, expense spikes, and payment-count outliers for a year or date window.

ParamInTypeDescription
yearqueryintegerCalendar year.
fromquerystringWindow start.
toquerystringWindow end.
currencyquerystringBGN or EUR.
limitqueryintegerMax items per list (default 5).
GET https://api.datanexusai.org/api/sebra/getUnusualPayments?year=2019&limit=5

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.

GET/api/sebra/getUnusualPayments/{year}x402 paid

Unusual SEBRA payments (path year)

Same as getUnusualPayments with year in the path.

ParamInTypeDescription
year (required)pathintegerCalendar year.
currencyquerystringBGN or EUR.
limitqueryintegerMax items per list.
GET https://api.datanexusai.org/api/sebra/getUnusualPayments/2019

Payment: x402 · $0.01 USDC · networks: Base, Polygon, Arbitrum One. Unauthenticated call returns HTTP 402 with PAYMENT-REQUIRED.