Artos Store API
The Artos Store API is a RESTful interface that allows developers to programmatical access and manage Artos e-commerce stores. Use the API to work with products, orders, customers, and more to seamlessly integrate Artos into your e-commerce workflow.
Getting started
Every Artos store is uniquely identified by a store ID that is generated when a merchant creates their store. This ID is essential for all API calls as it determines which specific store you're interacting with.
Currently, merchants access their store frontend directly from their merchant dashboard. Your store is accessible at:
https://store.artosapp.com/{your-store-id}
This store ID like your-store-id or a UUID such as d76f13bb-agsa-4aa2-b5d5-996cd58d7bd8 serves as the primary authentication mechanism for accessing your store data through the API, and must be included in all your API requests.
The Artos Store API follows REST principles, using standard HTTP methods:
- GET to retrieve resources
- POST to create new resources
- PUT to update existing resources
- DELETE to remove resources
All API responses are returned in JSON format, making it easy to integrate with any programming language or framework.