API basics
Requests
Base URL
All API access is conducted over HTTPS and is accessible from the api.bridgeapi.io/v3 domain.
Any non-secure requests will automatically redirect (HTTP 301) to the equivalent HTTPS URI.
HTTP verbs
Bridge API follows RESTful design patterns. Our API implements following HTTP verbs:
GET- Read resourcesPOST- Create new resourcesPUT- Modify existing resourcesDELETE- Remove resources
HTTP status codes
All responses follow standard HTTP status codes.
Typically, codes in the 2xx range signify success, codes in the 4xx range are for client-related issues, and 5xx codes are reserved for Bridge-related problems (which are rare).
200 OKSuccessful request.201 CreatedNew resource created.202 AcceptedThe request has been accepted for processing, but the processing has not been completed.204 No ContentResource deleted.400 Bad RequestThe request is malformed. Check the parameters or the syntax.401 UnauthorizedCouldn’t authenticate the request.403 ForbiddenThe request is not allowed.404 Not FoundNo such resource.409 ConflictThe resource already exists.415 Unsupported media typeThe resource requiresContent-Type: application/jsonheader and a JSON body.422 Unprocessable entityThe provided JSON is not valid.429 Too Many RequestsToo many requests hit the API too quickly. See Rate limits.500 Internal Server ErrorSomething went wrong on our end (these are rare).
Errors
code string | Error code |
property | Property or parameter that is invalid |
message | Human-readable error description |
{
"code": "invalid_client_credentials",
"message": "client_id and client_secret are invalid",
}Rate limits
Bridge API enforces rate limits with the following pattern:
-
2000 requests per Application within a 5-minute period
-
60 requests per User within a 60-second period
-
10
/authenticaterequests per User within a 60-second period -
Additional undisclosed limits apply to endpoints that do not require authentication
Raising the rate limitFor large applications, the rate limit of 2000 requests per 5 minutes can be increased. Please contact our support team if you require this adjustment.
Timestamps and dates
All timestamps are provided in ISO 8601 format with millisecond precision : yyyy-MM-ddTHH:mm:ss.SSSZ
Dates are returned in the format: yyyy-MM-dd
Pagination
All endpoints that return a list of objects support pagination, with pagination information available within a pagination object.
Bridge uses a cursor-based pagination via the after parameter.
Do not forge or store the
aftercursors, as they may change over time.
By default, all objects are ordered and paginated in reverse chronological order, with a default limit of 50.
Options
| Number of results per call. Accepted values: 1 - 500. |
| Cursor pointing to the start of the desired set. |
Response
Paginated results are always returned in an array and include pagination information in the pagination object:
| To make it easier, the API will build the next call into |
curl "https://api.bridgeapi.io/v3/transactions?limit=2" \
-X GET \
-H 'Bridge-Version: BRIDGE_VERSION' \
-H 'Client-Id: MY_CLIENT_ID' \
-H 'Client-Secret: MY_CLIENT_SECRET' \
-H 'Authorization: Bearer TOP_SECRET_ACCESS_TOKEN'{
"resources": [
{
"id": 9,
//...
},
{
"id": 8,
//...
}
],
"pagination": {
"next_uri": "/v3/transactions?limit=2&after=MzIx"
}
}Versioning
We release a new version of the API with a new date when making backward-incompatible changes. The following changes are considered backward-compatible:
- Adding new API endpoints
- Adding new properties to responses from existing API endpoints
- Adding optional request parameters to existing API endpoints
- Altering message attributes returned by validation failures or other errors
Updated about 1 month ago
