← All APIs
SEBRA
Bulgarian SEBRA public payment analytics (egovbg_sebra_days).
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.
| Param | In | Type | Description |
period (required) | query | string | One of: days, months, weekdays. Or pass as flag ?days / ?months / ?weekdays. |
from | query | string | Inclusive start (DD-MM-YYYY or MM-YYYY). |
to | query | string | Inclusive end (DD-MM-YYYY or MM-YYYY). |
currency | query | string | BGN or EUR. Omit to group by currency. |
year | query | integer | Restrict to one calendar year. |
limit | query | integer | Max rows after sorting by amount. |
Example: GET /api/sebra/getPeriodsWithMostPayments?period=days&from=01-10-2020&to=01-11-2020
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.
| Param | In | Type | Description |
year (required) | query | integer | Calendar year. |
currency | query | string | BGN or EUR. |
Example: GET /api/sebra/getTaxonomyForYear?year=2019
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.
| Param | In | Type | Description |
year (required) | path | integer | Calendar year. |
currency | query | string | BGN or EUR. |
Example: GET /api/sebra/getTaxonomyForYear/2019
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.
| Param | In | Type | Description |
from (required) | query | string | Start date DD-MM-YYYY or MM-YYYY. |
to | query | string | End date; defaults to today. |
currency | query | string | BGN or EUR. |
Example: GET /api/sebra/getTaxonomyForPeriod?from=01-10-2020&to=01-11-2020
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).
| Param | In | Type | Description |
year | query | integer | Calendar year (or use from/to). |
from | query | string | Window start DD-MM-YYYY or MM-YYYY. |
to | query | string | Window end. |
currency | query | string | BGN or EUR. |
limit | query | integer | Max programmes. |
Example: GET /api/sebra/getMostSponsoredProgramme?year=2019
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.
| Param | In | Type | Description |
year (required) | path | integer | Calendar year. |
currency | query | string | BGN or EUR. |
limit | query | integer | Max programmes. |
Example: GET /api/sebra/getMostSponsoredProgramme/2019
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.
| Param | In | Type | Description |
year | query | integer | Calendar year. |
from | query | string | Window start. |
to | query | string | Window end. |
currency | query | string | BGN or EUR. |
limit | query | integer | Max items per list (default 5). |
Example: GET /api/sebra/getUnusualPayments?year=2019&limit=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.
| Param | In | Type | Description |
year (required) | path | integer | Calendar year. |
currency | query | string | BGN or EUR. |
limit | query | integer | Max items per list. |
Example: GET /api/sebra/getUnusualPayments/2019
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.