Technology

The Findity API is organized around REST. It has predictable, resource-oriented URLs, accepts JSON request bodies, returns JSON responses, and uses standard HTTP verbs and authentication.

HTTP status codes

The API uses conventional HTTP status codes to indicate the outcome of a request:

Code range

Meaning

2xx

The request succeeded

4xx

The request failed due to a client error (e.g., a missing required
parameter or invalid JSON body)

Authentication

The API uses OAuth 2.0 with a client_id and client_secret to issue access tokens. All requests must include a valid Bearer token in the Authorization header.

See the Authentication guide for setup instructions.