API Documentation
Integrate Selley.io into your application with our comprehensive REST API
Quick Start
Get Your API Key
First, sign up for an account and navigate to your dashboard settings to generate an API key.
curl https://api.selley.io/v1/products \-H "Authorization: Bearer YOUR_API_KEY"API Endpoints
GET
/api/v1/products
Retrieve all products for your store
{
"products": [
{
"id": "prod_123",
"name": "Digital Product",
"price": 29.99,
"description": "Product description",
"image": "https://...",
"created_at": "2024-01-01T00:00:00Z"
}
]
}POST
/api/v1/products
Create a new product
{
"name": "New Product",
"price": 39.99,
"description": "Product description",
"image": "https://..."
}GET
/api/v1/orders
Retrieve all orders
GET
/api/v1/coupons
Retrieve all coupons
Why Use Our API?
Fast & Reliable
Built for performance with 99.9% uptime guarantee
Secure
All API calls are encrypted and authenticated
Well Documented
Comprehensive documentation with examples