curl -X GET "https://api.chariow.com/v1/store" \
-H "Authorization: Bearer sk_live_abc123xyz..."
{
"message": "success",
"data": {
"id": "str_abc123xyz",
"name": "My Digital Store",
"description": "A marketplace for premium digital products and courses",
"logo_url": "https://cdn.chariow.com/stores/str_abc123xyz/logo.png",
"url": "https://mystore.chariow.com",
"social_links": {
"telegram": null,
"instagram": "https://instagram.com/mystore",
"facebook": "https://facebook.com/mystore",
"x": "https://x.com/mystore",
"linkedin": null,
"youtube": null,
"tiktok": null,
"discord": null
},
"status": "active",
"appearance": {
"theme": {
"value": "modern",
"label": "Modern"
},
"font": {
"primary": {
"value": "inter",
"display_name": "Inter",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Inter"
},
"secondary": {
"value": "roboto",
"display_name": "Roboto",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Roboto"
}
},
"border_style": {
"value": "rounded",
"label": "Rounded"
},
"product_order": {
"value": "newest",
"label": "Newest First"
},
"color": {
"primary": {
"hex": "#3B82F6",
"rgb": "59, 130, 246"
},
"contrast": {
"hex": "#FFFFFF",
"rgb": "255, 255, 255"
}
},
"show_featured_products": true,
"show_purchase_button_on_product_card": true,
"show_recommended_products": true,
"products_per_row": 3,
"cta_animation_type": {
"value": "pulse",
"label": "Pulse"
}
}
},
"errors": []
}
Retrieve detailed information about your store
curl -X GET "https://api.chariow.com/v1/store" \
-H "Authorization: Bearer sk_live_abc123xyz..."
{
"message": "success",
"data": {
"id": "str_abc123xyz",
"name": "My Digital Store",
"description": "A marketplace for premium digital products and courses",
"logo_url": "https://cdn.chariow.com/stores/str_abc123xyz/logo.png",
"url": "https://mystore.chariow.com",
"social_links": {
"telegram": null,
"instagram": "https://instagram.com/mystore",
"facebook": "https://facebook.com/mystore",
"x": "https://x.com/mystore",
"linkedin": null,
"youtube": null,
"tiktok": null,
"discord": null
},
"status": "active",
"appearance": {
"theme": {
"value": "modern",
"label": "Modern"
},
"font": {
"primary": {
"value": "inter",
"display_name": "Inter",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Inter"
},
"secondary": {
"value": "roboto",
"display_name": "Roboto",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Roboto"
}
},
"border_style": {
"value": "rounded",
"label": "Rounded"
},
"product_order": {
"value": "newest",
"label": "Newest First"
},
"color": {
"primary": {
"hex": "#3B82F6",
"rgb": "59, 130, 246"
},
"contrast": {
"hex": "#FFFFFF",
"rgb": "255, 255, 255"
}
},
"show_featured_products": true,
"show_purchase_button_on_product_card": true,
"show_recommended_products": true,
"products_per_row": 3,
"cta_animation_type": {
"value": "pulse",
"label": "Pulse"
}
}
},
"errors": []
}
Authorization header as a Bearer token.
Authorization: Bearer YOUR_API_KEY
Show properties
str_ prefix (e.g., str_abc123xyz)null if no logo is set.Show properties
active, suspended, pending_reviewShow properties
{
"message": "API key is missing. Please provide a valid API key. Help: https://docs.chariow.com",
"data": [],
"errors": []
}
{
"message": "Invalid API key. Please check again. Help: https://docs.chariow.com",
"data": [],
"errors": []
}
curl -X GET "https://api.chariow.com/v1/store" \
-H "Authorization: Bearer sk_live_abc123xyz..."
{
"message": "success",
"data": {
"id": "str_abc123xyz",
"name": "My Digital Store",
"description": "A marketplace for premium digital products and courses",
"logo_url": "https://cdn.chariow.com/stores/str_abc123xyz/logo.png",
"url": "https://mystore.chariow.com",
"social_links": {
"telegram": null,
"instagram": "https://instagram.com/mystore",
"facebook": "https://facebook.com/mystore",
"x": "https://x.com/mystore",
"linkedin": null,
"youtube": null,
"tiktok": null,
"discord": null
},
"status": "active",
"appearance": {
"theme": {
"value": "modern",
"label": "Modern"
},
"font": {
"primary": {
"value": "inter",
"display_name": "Inter",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Inter"
},
"secondary": {
"value": "roboto",
"display_name": "Roboto",
"category": "sans-serif",
"url": "https://fonts.googleapis.com/css2?family=Roboto"
}
},
"border_style": {
"value": "rounded",
"label": "Rounded"
},
"product_order": {
"value": "newest",
"label": "Newest First"
},
"color": {
"primary": {
"hex": "#3B82F6",
"rgb": "59, 130, 246"
},
"contrast": {
"hex": "#FFFFFF",
"rgb": "255, 255, 255"
}
},
"show_featured_products": true,
"show_purchase_button_on_product_card": true,
"show_recommended_products": true,
"products_per_row": 3,
"cta_animation_type": {
"value": "pulse",
"label": "Pulse"
}
}
},
"errors": []
}
Was this page helpful?