Skip to content
ORB3X Utils API

APIs for Angola validation, geo, finance, salary, documents, and core utilities.

Use the docs to check request formats, response payloads, calculators, and upstream behavior across the current ORB3X Utils API surface.

Maintained by ORB3X

ORB3X Utils API is part of the broader ORB3X platform. The institutional company website lives at orb3x.com.

Open orb3x.com

Published routes

28

Response format

JSON

Cache policy

no-store

GNU BashQuick request sample (cURL)
curl -s "https://utils.api.orb3x.com/api/v1/validate/iban?iban=AO06004000010123456789012"curl -s "https://utils.api.orb3x.com/api/v1/address/suggest?q=talatona&type=municipality"curl -s "https://utils.api.orb3x.com/api/v1/salary/net?gross=500000&year=2026"curl -s -X POST https://utils.api.orb3x.com/api/v1/documents/invoice \  -H "Content-Type: application/json" \  -d '{"seller":{"name":"Orb3x, Lda"},"buyer":{"name":"Cliente Exemplo"},"items":[{"description":"Service","quantity":1,"unitPrice":100000,"vatRate":14}]}'

Shared response handling

Most routes return JSON and expose enough error detail to separate invalid input from upstream failures or assumption-driven calculation issues.

Live upstream data

The platform mixes deterministic local-data endpoints with a few upstream-backed routes, but all responses stay no-store to preserve freshness.

Route-level documentation

Each route family has a dedicated page covering request shape, response payload, assumptions, and common failure cases.

GET/api/v1/validate/*

Validation

IBAN and local Angolan bank-account validation with bank detection.

Open
GET/api/v1/phone/*

Phone

Parse, validate, and classify Angolan phone numbers by operator.

Open
GET/api/v1/address/* + /api/v1/geo/*

Address & Geo

Normalize Angolan addresses and read provinces, municipalities, and communes.

Open
GET/api/v1/calendar/*

Calendar

Angolan public holidays and business-day calculations.

Open
GET/api/v1/finance/*

Finance

VAT, invoice totals, and inflation adjustments for Angolan money flows.

Open
GET/api/v1/salary/*

Salary

Estimate net salary, gross salary, and employer cost under Angola payroll assumptions.

Open
GET/api/v1/time/*

Time

Current local time, timezone conversion, and business-hours checks.

Open
POST/api/v1/documents/*

Documents

Generate invoice, receipt, and contract PDFs from JSON payloads.

Open
Documentation

Written like reference pages, not marketing copy.

The docs section covers shared behavior, route-specific payloads, and examples for each endpoint. Use it as the main entry point for implementation work.

Start with the route overview to understand shared status codes and caching rules.
Use the dedicated endpoint pages for request fields, response examples, and integration notes.
Keep the examples page open while wiring fetch helpers or smoke tests.