API at a glance
Description: This API allows you to send an event from your server or use JavaScript events to call the API. Events track user actions and behaviors on your platform.
Authentication & testing
Testing the API on this page
How to try it here
- Use your Event API Key as the Username (leave Password blank).
- Select the appropriate API endpoint based on your Blueshift region.
- Enter the necessary parameters and click Try It to run the request.


Authentication using Base64 encoding
Note for developers
API requests require authentication using HTTP Basic Authentication with an API key.
The Event API key serves as the username, while the password field should be left empty.
The format to encode is: your_event_api_key: (note the trailing colon).
This string must be Base64-encoded and included in the request's Authorization header as follows:
Authorization: Basic encoded_valueYou can generate the encoded value using a trusted Base64 encoder.
Postman collection
Try it with Postman: Explore the API using Blueshift's Postman collection.
Things to know before you start
- Required identifier fields: Ensure that you provide values for at least one of the following fields:
customer_id,event,device_id,cookieoremail. - Best practice: If possible, provide values for more than one of these identifier fields.
- Anonymous users: For anonymous users, specify at least the value for the
cookie. - Event naming rules: Ensure that the event name does not contain periods (
.), whitespaces, is not a numeric value, and contains no more than 64 characters. - Mobile apps: If you use the event API to identify a user from a mobile app, ensure that you also include
device_idanddevice_tokenparameters. However, we recommend using Blueshift's SDK for mobile apps. See Android SDK and iOS SDK. - Use case: Best for tracking user interactions, behaviors, and custom events from your server or web application.
Request parameters
Check out the request parameters
Body parameters
Note: You must provide at least one of:
customer_id,event,device_id,cookie, or
| Parameter | Type | Required | Description |
|---|---|---|---|
event | string | ✅ Yes | Specify the name of the event (e.g., identify, view, add_to_cart, purchase, search, custom event names). |
customer_id | string | ❌ No | Specify the customer ID. |
email | string | ❌ No | Specify the user's email address. |
device_id | string | ❌ No | Specify the UUID of the device. |
cookie | string | ❌ No | User's Blueshift cookie used as an identifier for anonymous users. |
device_type | string | ❌ No | Specify the type of the device (e.g., ios, android). |
device_token | string | ❌ No | Specify the token of the device. |
device_idfa | string | ❌ No | Specify the advertising identifier (IDFA) on the device. |
device_idfv | string | ❌ No | Specify the identifier for vendor (IDFV) on the device. |
device_manufacturer | string | ❌ No | Specify the manufacturer of the device. |
os_name | string | ❌ No | Specify the OS name. |
network_carrier | string | ❌ No | Specify the carrier on the mobile device. |
ip | string | ❌ No | Specify the IP address of the device. |
latitude | string | ❌ No | Specify the latitude of the user's location. |
longitude | string | ❌ No | Specify the longitude of the user's location. |
event_uuid | string | ❌ No | Specify a unique identifier of the event in UUID format. See RFC 4122. |
subscription_groups | array | ❌ No | Specify the user's subscription preferences. See structure below. |
Subscription groups object
| Parameter | Type | Description |
|---|---|---|
id | string | The ID of the subscription group. |
subscribed | boolean | Enter true if the user is subscribed, or false if unsubscribed. |
Example requests & responses
Send an identify event
Request
curl --request POST \
--url https://api.getblueshift.com/api/v1/event \
--header 'accept: application/json' \
--header 'authorization: Basic <YOUR_EVENT_API_KEY>' \
--header 'content-type: application/json' \
--data '{
"customer_id": "812123",
"event": "identify",
"email": "[email protected]",
"device_type": "ios",
"device_id": "8abe3faa-d48d-4e4a-00ca-beae01f1c987",
"ip": "192.0.2.1",
"subscription_groups": [
{
"id": "newsletter",
"subscribed": true
},
{
"id": "weekly_promo",
"subscribed": false
}
]
}'Response
{
"status": "OK"
} 413You can upload upto 100 products in an api call. The server is refusing to process a request because the request payload is larger than the server is willing or able to process.
422Unprocessable Entity - Some/all of the products have invalid data, please check the response for more information on.
429Rate limit exceeded - Too many requests
500Internal Server Error - Please contact blueshift for more information
502Service unavailable, please retry - Bad Gateway, re-try with exponential backoff
503Service unavailable, please retry - Service Unavailable, re-try with exponential backoff
504Service unavailable, please retry - Gateway Timeout, please re-try with exponential backoff