Login to Pulse

Log in to your dashboard by visiting pulse.ingedata.ai. If you don’t have an account, contact your account manager.

Create an API Key

Test Your API Key

CURL

Python

Ruby

Node

You can use curl and jq to fetch your token and verify that you can access the platform:

PULSE_API_TOKEN=$(curl -X POST "https://pulse.ingedata.ai/api/v3/iam/auth/api/login" \
-H "accept: application/json" -H "Content-Type: application/json" \
-d "{ \"key\": \"PULSE_xxxxxxxxxxxx\"}" | jq -r .meta.token)

curl -X GET "https://pulse.ingedata.ai/api/v3/iam/accounts/me" -H "Authorization: Bearer $PULSE_API_TOKEN"

This will return your account details if the key is valid.

Token expiration The token generated by the login action is valid an hour. Once expired, you will need to generate a new token.