Skip to main content

ZenFlow API

ZenFlow is a warehouse management system (WMS) that provides a powerful API for integrating with ERP systems, e-commerce platforms, and other business applications.

What you can do with our API

Integrations

ZenFlow integrates with major e-commerce platforms:

Base URL

All API requests should be made to:
https://api.zenflow.com.ar/api/v1

Authentication

ZenFlow API uses API Keys for authentication. Include your API key in the X-API-Key header:
curl -X GET "https://api.zenflow.com.ar/api/v1/orders" \
  -H "X-API-Key: zenflow_live_your_api_key_here"
API keys are scoped to specific permissions. Make sure your key has the required scopes for the endpoints you want to use.

Response Format

All responses are returned in JSON format with a consistent structure:

Success Response

{
  "success": true,
  "data": {
    // Response data here
  }
}

Error Response

{
  "success": false,
  "error": {
    "code": "error_code",
    "message": "Human readable error message"
  }
}

Rate Limits

API requests are rate limited based on your API key configuration:
Limit TypeDefault
Per Minute60 requests
Per Hour1,000 requests
Per Day10,000 requests
Rate limit headers are included in all responses:
  • X-RateLimit-Limit: Maximum requests allowed
  • X-RateLimit-Remaining: Requests remaining
  • X-RateLimit-Reset: Unix timestamp when the limit resets

Need Help?