Braze provides a high performance REST API to allow you to track users, send messages, export data, and more.
A REST API is a way to programmatically transfer information over the web using a predefined schema. Braze has created many different endpoints with specific requirements that will perform various actions and/or return various data. API access is done using HTTPS web requests to your company’s REST API endpoint (this will correspond to your Dashboard URL as shown in the table below).
Customers using Braze’s EU database should use https://rest.fra-01.braze.eu/
. For more information on REST API endpoints for customers using Braze’s EU database see our EU/US Implementation Differences documentation.
Instance | Dashboard URL | REST Endpoint |
---|---|---|
US-01 | https://dashboard.braze.com orhttps://dashboard-01.braze.com | https://rest.iad-01.braze.com |
US-02 | https://dashboard-02.braze.com | https://rest.iad-02.braze.com |
US-03 | https://dashboard-03.braze.com | https://rest.iad-03.braze.com |
US-04 | https://dashboard-04.braze.com | https://rest.iad-04.braze.com |
US-06 | https://dashboard-06.braze.com | https://rest.iad-06.braze.com |
EU-01 | https://dashboard.braze.eu orhttps://dashboard-01.braze.eu | https://rest.fra-01.braze.eu |
If you have a Postman account (MacOS, Windows, and Linux versions can be downloaded from their website located here), you can go to our Postman documentation and click the orange Run in Postman
button in the top, right corner. This will allow you to create an environment, as well as edit the available POST
and GET
requests to suit your own needs.
The Braze Postman Collection uses a templating variable, {{instance_url}}
, to substitute the REST API URL of your Braze instance into the pre-built requests. Rather than having to manually edit all requests in the Collection, you can set up this variable in your Postman environment. To do so, please follow the steps below:
instance_url
and api_key
with values corresponding to your Braze instance and Braze REST API Key, as pictured below.As of April, 2020 Braze has changed how we read App Group API keys. Instead of passing them in the request body or through url parameters, we now read the App Group Restapi_key
through the HTTP Authorization header. API keys not passed through the HTTP Authorization Header will coninue to work until they have been sunset.
Once you have configured your environment. You can use any of the pre-built requests in the collection as a template for building new API requests. To start using one of the pre-built requests, simply click on it within the ‘Collections’ menu on the left side of Postman. This will open the request as a new tab in the main window of the Postman app.
In general, there are two types of requests that Braze’s API endpoints accept - GET
and POST
. Depending on which HTTP
method the endpoint uses, you’ll need to edit the pre-built request differently.
When editing a POST
request, you’ll need to open the request and navigate to the Body
section in the request editor. For readability, select the raw
radio button to format the JSON
request body.
When editing a GET
request, you will need to edit the parameters passed in the request URL. To edit these easily, select the Params
button next to the URL bar and edit the key-value pairs in the fields that will appear below the URL bar.
Once your API request is ready to send, click on the ‘Send’ button next to the URL bar. The request will be sent and the response data will be populated in a section underneath the request editor. From here, you can view the raw data returned from Braze’s API, see the HTTP response code, see how long the request took to process, and view header information.
Use this page to mock Braze Endpoints in your testing and development.
Run our mock API sample using the open source WireMock library, or in the free edition of WireMock Cloud. You'll have a working API server simulating the behavior of Braze Endpoints, which will allow you to keep building and testing even if the actual API you isn't currently available.