This is found in your BuiltOn dashboard in Settings. Every request must have it included in the X-Builton-Api-Key
Header.
X-Builton-Api-Key: <builton-api-key>
Here is how it would look like if you were to list your products:
GET /products HTTP/1.1Content-Type: application/jsonX-Builton-Api-Key: <builton-api-key>Host: api.builton.dev
You'll get these from your Authentication Provider, or create them yourself if you're using a custom authentication solution. Once you've set that up in the dashboard, you'll use those JWTs to connect with our APIs using the Authorization
header.
Authorization: Bearer <jwt>
Here's how they'd look if you were creating a user:
POST /users HTTP/1.1Content-Type: application/jsonAuthorization: Bearer <jwt>X-Builton-Api-Key: <builton-api-key>Host: api.builton.dev
Make sure to includeBearer
before the JWT.