Build custom integrations with Zently's RESTful API
The Zently API is a RESTful API that allows you to programmatically access and manage your store data. All API requests require authentication using an API key.
# Base URL
https://app.zently.me/api/v1
# Authentication
Authorization: Bearer YOUR_API_KEY
All API requests must include your API key in the Authorization header. You can generate API keys from your dashboard settings.
import requests
api_key = "your_api_key_here"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
response = requests.get(
"https://app.zently.me/api/v1/products",
headers=headers
)
products = response.json()
Manage your store products
GET /api/v1/products - List all productsPOST /api/v1/products - Create a productGET /api/v1/products/{id} - Get product detailsPUT /api/v1/products/{id} - Update productDELETE /api/v1/products/{id} - Delete productAccess order information
GET /api/v1/orders - List all ordersGET /api/v1/orders/{id} - Get order detailsPOST /api/v1/orders/{id}/refund - Process refundReceive real-time notifications
order.created - New order placedorder.paid - Order payment completedproduct.updated - Product modifiedAPI requests are limited to 1000 requests per hour per API key. Rate limit information is included in response headers.
For detailed API documentation, code examples, and SDKs, visit your dashboard or contact our support team.
Contact Support