Overview
Third-party applications can seamlessly integrate with Stellar Menus by utilizing our RESTful APIs. This allows for retrieval of data like menu item names, descriptions, and prices through API calls.
All our API endpoints are secured with standard HTTPS protocols and require API key authentication. Responses are returned in JSON format for easy parsing and integration.
Please note: Use of the Stellar Menus APIs is governed by our Terms and Conditions.
The APIs are accessed directly at https://api.stellarmenus.com.
Authentication
To ensure secure access, every request to the Stellar Menus API must carry an Authorization
header containing your unique API key.
Header format
Authorization: <Your-API-Key>
Replace <Your-API-Key>
with the specific API key issued to you by Stellar Menus.
Unauthorized Responses
In instances where a request is either unauthenticated or contains an invalid API key, the response will be as follows:
{
"message": "Unauthorized: Token missing"
}
Ensure that your API key is accurate and included in each request to avoid such unauthorized responses.
Testing Authentication
You can quickly verify the validity of your API key by sending a GET
request to /api/v1
.
For a Valid Authentication:
A successful authentication will provide this JSON response:
{
"message": "The APIs are up, running and available"
}
If you're yet to obtain an API key or face issues during authentication, please contact Stellar Menus support for assistance.
Postman Example
To visualize the process, here's how you would set up the authorization token in Postman, along with the expected response from the endpoint https://api.stellarmenus.com/v1
: