Spiky Platform API
Complete reference for authenticating against the Spiky API, uploading call recordings, and
retrieving analysis results.
Getting started with Postman
If you were given the Spiky Platform API Postman collection, do this one-time setup
before anything else. (If you’re calling the API from your own code instead, skip to
Section 1.)
Step 1 — Create an environment and set the base URL
- In Postman, top-right, click Environments → + to create a new environment.
- Give it any name (e.g.
Spiky).
- Add a variable — Variable:
API_URL, Value: https://apiv2.spiky.ai
- Save (Cmd/Ctrl + S).
- Top-right, open the environment dropdown and select the environment you just created.
This step is required. The login step below saves your token into this environment, so an
environment must be selected or nothing gets saved.
Step 2 — Log in (Get Tokens)
- Open Authentication → Get Tokens.
- Leave Authorization = No Auth — this is correct. You don’t have a token yet, so this
one request needs no auth. (Don’t change it.)
- Open the Body tab and replace the placeholders with your real Spiky credentials:
{ "username": "[email protected]", "password": "your_password" }
- Click Send.
Step 3 — You’re now authenticated (automatic)
- If the response is 200, the collection automatically saves your
IdToken into the
IDtoken variable. A test script does this for you — you do not copy or paste anything.