Quickstart

Make your first request to the SUBSCRIBE API.
1

Request access

Reach out to your SUBSCRIBE representative to have API credentials issued for your organization. You will receive a client ID and secret for the sandbox environment.

2

Get a token

Exchange your credentials for a short-lived access token.

$curl -X POST https://api.subscribeplatform.com/oauth/token \
> -H "Content-Type: application/json" \
> -d '{"client_id": "YOUR_CLIENT_ID", "client_secret": "YOUR_CLIENT_SECRET"}'
3

Call the API

Pass the token as a bearer token on every request.

$curl https://api.subscribeplatform.com/v1/funds \
> -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Sandbox data is reset periodically. Do not rely on sandbox identifiers in production code.