API Overview
Basirah REST API overview, authentication, and conventions.
The Basirah REST API provides programmatic access to findings, work items, assets, evidence, integrations, and compliance data. All endpoints are under the /api/v1/ prefix.
Conventions
- Content type — All requests and responses use
application/json. - Authentication — Bearer token in the
Authorizationheader. See Authentication. - Pagination — List endpoints support
offsetandlimitquery parameters. - Filtering — List endpoints accept query parameters for field-level filtering and sorting.
- Errors — Error responses include a problem detail body with a request ID for tracing.
OpenAPI specification
Your Basirah instance serves a machine-readable OpenAPI spec at /api/v1/openapi.json with exact
schemas, required fields, and example responses.
Related