Getting Started
Welcome to the Maison Safqa Brand Developer API. This API allows you to programmatically manage your products on the Maison Safqa platform
Base URL
https://api.maisonsafqa.com/v1Authentication
API Key Formats
Environment
Key Prefix
Usage
Getting Your API Key
Quick Start Example
curl -X POST https://api.maisonsafqa.com/v1/products \
-H "Content-Type: application/json" \
-H "X-MaisonSafqa-Api-Key: ms_test_your_api_key_here" \
-d '{
"title": "Premium Cotton T-Shirt",
"body_html": "<p>High quality cotton t-shirt.</p>",
"vendor": "Your Brand Name",
"product_type": "Apparel",
"tags": "cotton,premium,t-shirt",
"variants": [
{
"title": "Small",
"sku": "TSHIRT-001-S",
"price": 99.99,
"inventory_quantity": 25
},
{
"title": "Medium",
"sku": "TSHIRT-001-M",
"price": 99.99,
"inventory_quantity": 50
},
{
"title": "Large",
"sku": "TSHIRT-001-L",
"price": 99.99,
"inventory_quantity": 30
}
],
"images": [
{
"src": "https://example.com/images/tshirt-front.jpg",
"alt": "T-shirt front view",
"position": 1
}
]
}'Response
Rate Limits
Limit
Value
Rate Limit Headers
Header
Description
Key Concepts
Product Status
Inventory Sync
Bulk Operations
Error Handling
Code
Description
Next Steps
Support
Last updated