Getting Started

This guide shows how to make your first request to the Fortisx API and interpret responses.


Base URL

https://api.fortisx.fi/v1

Use this URL for all production requests.


Authentication

  • System Endpoints: no API key required.

  • All other endpoints: include your API key as a Bearer token in the Authorization header:

Authorization: Bearer <API_KEY>

Your First Call: GET /ping

Returns a simple health-check response to verify connectivity with the API.

HTTP

GET /ping
Accept: application/json

Quick Examples

cURL


Successful Response

200 OK


Error Responses

All error responses follow the same JSON shape:

See Errors for details.

Last updated