HTTP API Source
The Segment HTTP Tracking API lets you record analytics data from any website or application. The requests hit Segment servers, Segment routes your data to any destination you want.
Segment has native sources for most use cases (like JavaScript and iOS) that are all built for high-performance and are open-source. But sometimes you may want to send to the HTTP API directly—that’s what this reference is for.
Headers
Authentication
Authenticate to the Tracking API by sending your project’s Write Key along with a request.
Authentication uses HTTP Basic Auth, which involves a username:password
that is base64 encoded and prepended with the string Basic
.
In practice that means taking a Segment source Write Key,'abc123'
, as the username, adding a colon, and then the password field is left empty. After base64 encoding 'abc123:'
becomes 'YWJjMTIzOg=='
; and this is passed in the authorization header like so: 'Authorization: Basic YWJjMTIzOg=='
.
Include a colon before encoding. While encoding the write key without a colon might work due to backward compatibility, this won’t always be the case.
Content-Type
To send data to Segment’s HTTP API, a content-type header must be set to 'application/json'
.
Errors
Segment returns a 200
response for all API requests except errors caused by large payloads and JSON errors (which return 400
responses.) To debug events that return 200
responses but aren’t accepted by Segment, use the Segment Debugger.
Common reasons events are not accepted by Segment include:
- Payload is too large: The HTTP API can handle API requests that are 32KB or smaller. The batch API endpoint accepts a maximum of 500KB per request, with a limit of 32KB per event in the batch. If these limits are exceeded, Segment returns a 400 Bad Request error.
- Identifier is not present: The HTTP API requires that each payload has a userId and/or anonymousId.
- Track event is missing name: All
track
events sent to Segment must have anevent
field. - Deduplication: Segment deduplicates events using the
messageId
field, which is automatically added to all payloads coming into Segment. If you’re setting up the HTTP API yourself, ensure all events have unique messageId values. - Invalid JSON: If you send an event with invalid JSON, Segment returns a 400 Bad Request error.
Segment welcomes feedback on API responses and error messages. Reach out to support with any requests or suggestions you may have.
Rate limits
For each workspace, Segment recommends you to not exceed 20,000 requests per second with the HTTP API. If you exceed this, Segment reserves the right to queue any additional events and process those at a rate that doesn’t exceed the limit. To request a higher limit, contact Segment.
For batch
requests, there’s a limit of 500 KB per request.
Engage rate limit
Engage has a limit of 1,000 events per second for inbound data. Visit the Engage Default Limits documentation to learn more.
Max request size
There is a maximum of 32KB
per normal API request. The batch
API endpoint accepts a maximum of 500KB
per request, with a limit of 32KB
per event in the batch. If you are sending data from a server source, Segment’s API responds with 400 Bad Request
if these limits are exceeded.
Regional configuration
For Business plans with access to Regional Segment, you can use the host
configuration parameter to send data to the desired region:
- Oregon (Default) —
api.segment.io/
- Dublin —
events.eu1.segmentapis.com/
Identify
identify
lets you tie a user to their actions and record traits about them. It includes a unique User ID and any optional traits you know about them.
Segment recommends calling identify
a single time when the user’s account is first created, and only identifying again later when their traits change.
Example identify
call:
POST https://api.segment.io/v1/identify
{
"userId": "019mr8mf4r",
"traits": {
"email": "pgibbons@example.com",
"name": "Peter Gibbons",
"industry": "Technology"
},
"context": {
"ip": "24.5.68.47"
},
"timestamp": "2012-12-02T00:30:08.276Z"
}
This call is identifying the user by their unique User ID (the one you know them by in your database) and labeling them with email
, name
, and industry
traits.
Field | Type | Description | |
---|---|---|---|
anonymousId |
required; optional if userID is set instead |
String | A pseudo-unique substitute for a User ID, for cases when you don’t have an absolutely unique identifier. A userId or an anonymousId is required.
See the Identities docs for more details.
|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
traits |
optional | Object | Free-form dictionary of traits of the user, like email or name .
See the Traits field docs for a list of reserved trait names.
|
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
Find details on the identify method payload in the Segment Spec.
Track
track
lets you record the actions your users perform. Every action triggers an “event”, which can also have associated properties.
You’ll want to track events that are indicators of success for your site, like Signed Up, Item Purchased or Article Bookmarked.
To get started, try tracking just a few important events. You can always add more later.
Example track
call:
POST https://api.segment.io/v1/track
{
"userId": "019mr8mf4r",
"event": "Item Purchased",
"properties": {
"name": "Leap to Conclusions Mat",
"revenue": 14.99
},
"context": {
"ip": "24.5.68.47"
},
"timestamp": "2012-12-02T00:30:12.984Z"
}
track
event properties can be anything you want to record. In this case, name
and revenue
.
The track
call has the following fields:
Field | Type | Description | |
---|---|---|---|
anonymousId |
required; optional if userID is set instead |
String | A pseudo-unique substitute for a User ID, for cases when you don’t have an absolutely unique identifier. A userId or an anonymousId is required.
See the Identities docs for more details.
|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
event |
required | String | Name of the action that a user has performed. See the Event field docs for more details. |
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
properties |
optional | Object | Free-form dictionary of properties of the event, like revenue
See the Properties docs for a list of reserved property names.
|
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
Find details on best practices in event naming as well as the track
method payload in our Spec.
Page
The page
method lets you record page views on your website, along with optional extra information about the page being viewed.
Example page
call:
POST https://api.segment.io/v1/page
{
"userId": "019mr8mf4r",
"name": "Tracking HTTP API",
"timestamp": "2012-12-02T00:31:29.738Z"
}
The page
call has the following fields:
Field | Type | Description | |
---|---|---|---|
anonymousId |
required; optional if userID is set instead |
String | A pseudo-unique substitute for a User ID, for cases when you don’t have an absolutely unique identifier. A userId or an anonymousId is required.
See the Identities docs for more details.
|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
name |
optional | String | Name of the page For example, most sites have a “Signup” page that can be useful to tag, so you can see users as they move through your funnel. |
properties |
optional | Object | Free-form dictionary of properties of the page, like url and referrer
See the Properties field docs for a list of reserved property names. |
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
Find details on the page
payload in our Spec.
Screen
The screen method let you record whenever a user sees a screen of your mobile app.
You’ll want to send the screen
message whenever a user requests a page of your app.
Example screen
call:
POST https://api.segment.io/v1/screen
{
"userId": "019mr8mf4r",
"name": "Tracking HTTP API",
"timestamp": "2012-12-02T00:31:29.738Z"
}
The screen
call has the following fields:
Field | Type | Description | |
---|---|---|---|
anonymousId |
required; optional if userID is set instead |
String | A pseudo-unique substitute for a User ID, for cases when you don’t have an absolutely unique identifier. A userId or an anonymousId is required.
See the Identities docs for more details.
|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
name |
optional | String | Name of the screen See the Name field docs for more details. |
properties |
optional | Object | Free-form dictionary of properties of the screen, like name
See the Properties field docs for a list of reserved property names.
|
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
Find details on the screen
payload in our Spec.
Group
group
lets you associate an identified user with a group. A group could be a company, organization, account, project, or team. It also lets you record custom traits about the group, like industry or number of employees.
This is useful for tools like Intercom, Preact and Totango, as it ties the user to a group of other users.
Example group
call:
POST https://api.segment.io/v1/group
{
"userId": "019mr8mf4r",
"groupId": "8e9df332ac",
"traits": {
"name": "Initech",
"industry": "Technology",
"employees": 420
},
"timestamp": "2012-12-02T00:31:38.208Z"
}
The group
call has the following fields:
Field | Type | Description | |
---|---|---|---|
anonymousId |
required; optional if userID is set instead |
String | A pseudo-unique substitute for a User ID, for cases when you don’t have an absolutely unique identifier. A userId or an anonymousId is required.
See the Identities docs for more details.
|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
groupId |
required | String | A unique identifier for the group in your database. See the Group ID field docs for more detail. |
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
traits |
optional | Object | Free-form dictionary of traits of the group, like email or name
See the Traits field docs for a list of reserved trait names.
|
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
Find more details about group
including the group
payload in our Spec.
Alias
alias
is how you associate one identity with another. This is an advanced method, but it is required to manage user identities successfully in some of our destinations.
In Mixpanel it’s used to associate an anonymous user with an identified user once they sign up. For Kissmetrics, if your user switches IDs, you can use ‘alias’ to rename the ‘userId’.
Example alias
call:
POST https://api.segment.io/v1/alias
{
"previousId": "39239-239239-239239-23923",
"userId": "019mr8mf4r",
"timestamp": "2012-12-02T00:31:29.738Z"
}
The alias
call has the following fields:
Field | Type | Description | |
---|---|---|---|
context |
optional | Object | Dictionary of extra information that provides useful context about a message, but is not directly related to the API call like ip address or locale
See the Context field docs for more details.
|
integrations |
optional | Object | Dictionary of destinations to either enable or disable See the Destinations field docs for more details. |
previousId |
required | String | Previous unique identifier for the user See the Previous ID field docs for more details. |
timestamp |
optional | Date | Timestamp when the message itself took place, defaulted to the current time by the Segment Tracking API, as a ISO-8601 format date string.
If the event just happened, leave it out and we’ll use the server’s time. If you’re importing data from the past, make sure you to provide a timestamp .See the Timestamps fields docs for more detail. |
userId |
required; optional if anonymousID is set instead |
String | Unique identifier for the user in your database.
A userId or an anonymousId is required.
See the Identities docs for more details.
|
For more details on the alias
call and payload, check out our Spec.
Historical import
You can import historical data by adding the timestamp
argument to any of your method calls. This can be helpful if you’ve just switched to Segment.
Historical imports can only be done into destinations that can accept historical timestamped data. Most analytics tools like Mixpanel, Amplitude, and Kissmetrics can handle that type of data just fine. One common destination that does not accept historical data is Google Analytics since their API cannot accept historical data.
If you’re tracking things that are happening right now, leave out the timestamp
and Segment servers will timestamp the requests for you.
Batch
The batch
method lets you send a series of identify
, group
, track
, page
and screen
requests in a single batch, saving on outbound requests. Our server-side and mobile sources make use of this method automatically for higher performance.
There is a maximum of 500KB
per batch request and 32KB
per call.
HTTP Tracking API limits
Segment's HTTP Tracking API accepts batch requests up to 500KB. To avoid errors in event creation, ensure that individual event payload sizes remain below 32KB.
Here’s the what the batch
request signature looks like:
POST https://api.segment.io/v1/batch
{
"batch": [
{
"type": "identify",
"userId": "019mr8mf4r",
"traits": {
"email": "jake@yahoo.com",
"name": "Jake Peterson",
"age": 26
},
"timestamp": "2012-12-02T00:30:08.276Z"
},
{
"type": "track",
"userId": "019mr8mf4r",
"event": "Song Played",
"properties": {
"name": "Fallin for You",
"artist": "Dierks Bentley"
},
"timestamp": "2012-12-02T00:30:12.984Z"
},
{
"type": "identify",
"userId": "971mj8mk7p",
"traits": {
"email": "cindy@example.com",
"name": "Cindy Gonzalez",
"age": 23
},
"timestamp": "2015-2-02T00:30:08.276Z"
},
{
"type": "track",
"userId": "971mj8mk7p",
"event": "Song Played",
"properties": {
"name": "Get Right",
"artist": "Jennifer Lopez"
},
"timestamp": "2015-2-02T00:30:12.984Z"
}
],
"context": {
"device": {
"type": "phone",
"name": "Apple iPhone 6"
}
}
}
Field | Type | Description | |
---|---|---|---|
batch Array |
An array of identify , group , track , page and screen method calls. Each call must have an type property with a valid method name. |
||
context Object, optional |
The same as Context for other calls, but it will be merged with any context inside each of the items in the batch. | ||
integrations Object, optional |
The same as Destinations for other calls, but it will be merged with any destinations inside each of the items in the batch. |
Selecting Destinations
The alias
, group
, identify
, page
and track
calls can all be passed an object of integrations
that lets you turn certain destinations on or off. By default all destinations are enabled.
Here’s an example showing an identify
call that only goes to Mixpanel and Kissmetrics:
POST https://api.segment.io/v1/identify
{
"userId": "019mr8mf4r",
"traits": {
"email": "pgibbons@example.com",
"name": "Peter Gibbons",
"industry": "Technology"
},
"context": {
"ip": "24.5.68.47"
},
"timestamp": "2012-12-02T00:30:08.276Z",
"integrations": {
"All": false,
"Mixpanel": true,
"Kissmetrics": true,
"Google Analytics": false
}
}
'All': false
says that no destination should be enabled unless otherwise specified. 'Mixpanel': true
turns on Mixpanel, "Kissmetrics": true,
turns on Kissmetrics, and so on.
Destination flags are case sensitive and match the destination’s name in the docs (i.e. “AdLearn Open Platform”, “awe.sm”, “MailChimp”, and so on).
Note:
-
Available at the business level, filtering track calls can be done right from the Segment UI on your source schema page. Segment recommends using the UI if possible since it’s a much simpler way of managing your filters and can be updated with no code changes on your side.
-
If you are on a grandfathered plan, events sent server-side that are filtered through the Segment dashboard will still count towards your API usage.
Collecting IP Address
When sending a HTTP call from a user’s device, you can collect the IP address by setting context.direct
to true
.
Troubleshooting
The following tips often help resolve common issues.
No events in my debugger
-
Double check that you’ve set up the library correctly.
-
Make sure that you’re calling a Segment API method once the library is successfully installed—
identify
,track
, and so on.
No events in my end tools
-
Double check your credentials for that destination.
-
Make sure that the destination you are troubleshooting can accept server-side API calls. Compatibility is shown on the destination docs pages and on the sheets on your Segment source Destinations page.
-
Check out the destination’s documentation to see if there are other requirements for using the method and destination you’re trying to get working.
This page was last modified: 25 Oct 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!