Base URL
Access the Way API via this base URL.Authentication
There are two methods to authenticate with the Way API. Organization Level Authentication allows you to create and use a single API key to access the data across all of the dashboards within the Organization. Dashboard Level Authentication provides an API key and access at a specific dashboard level. View the details of each below.| Feature | Organization Level | Brand Level |
|---|---|---|
| Scope | All dashboards under org | Specific brand/dashboard |
| Headers Required | Way-Organization-Id, Way-Secret-Key | Way-Brand-Id, Way-Secret-Key |
| Example Request URL | /v1/organizations/{organizationId}/brands | /v1/brands/{brandId}/settings |
| Use Case | Managing multiple dashboards | Restricting access to one brand |
Organization Level Authentication
Organization Level Authentication
If you are part of an Organization, you can create and use a single Secret Key that can be used to authenticate your API requests for all brands (dashboards) within the organization.To authenticate your API requests when using an Organization Secret Key, include these headers:
You can test your API key by making a If successful, you will receive a response that looks like the following:Here’s an example Curl request (replace with your own Organization Id and API key):
Way-Organization-Id- Your unique Organization IDWay-Secret-Key- Your organization secret API access key

GET request toDashboard Level Authentication
Dashboard Level Authentication
You can authenticate using a specific Brand-Id and API key for each specific brand (dashboard) you have access to. This will restrict the API responses to only fetch the data for that specific brand (dashboard).To authenticate your API requests when using a Brand Secret Key, include these headers:
You can test your API key by making a If successful, you will receive a response that looks like the following:Here’s an example Curl request (replace with your own Brand Id and API key):
Way-Brand-Id- Your unique Brand IDWay-Secret-Key- Your brand secret API access key

GET request toResponse Codes
Success Codes
Success Codes
200 OK- Request successful.201 Created- Resource (like login, signup, booking) created successfully.
Validation Codes
Validation Codes
422 Unprocessable Entity- Correct content type and syntax, but instructions couldn’t be processed.404 Not Found- Requested resource does not exist.
Authorization Codes
Authorization Codes
Server Error Codes
Server Error Codes
500, 502, 503, 504- Server errors on Way’s end (rare occurrences).