Store Access
Every Artos store has a unique identifier that controls access to your store data through our API. This guide explains how to use your store ID to authenticate requests and access your store resources.
Store Identification
Each merchant's store is assigned a unique identifier when it's created in the Artos system. This store ID serves as the primary method of store identification and authentication in the current version of the API.
For all API requests, you must include your store ID in the x-store-id header. This ID is a UUID that uniquely identifies your store in the Artos ecosystem.
Making API Requests
All Artos Store API requests use the following base URL structure:
https://api.artosapp.com
When working with the Artos Store API, you'll need to include your store ID in the x-store-id header for all API requests:
curl -H "x-store-id: {your-store-id}" https://api.artosapp.com/store/products
Future Authentication
The Artos team is actively working on enhanced authentication mechanisms that will provide more security options for production environments, including:
- API key authentication
- OAuth 2.0 integration
- Role-based access controls
These features will be documented here as they become available.