API Documentation

Integrate Max API services into your e-commerce platform with our comprehensive API documentation.

API Keys

Your API Key

Keep your API key secure and do not share it publicly. This key identifies your account and provides access to all API services.

API Key: sk_live_1234567890abcdef1234567890abcdef
Important Security Notice
  • Do not expose your API key in client-side code
  • Regenerate your key immediately if you suspect it's been compromised
  • You are responsible for all requests made with your API key

Image CDN API

All API requests must include your API key in the request headers:

Header Parameters

Parameter Description Required
apikey Your API key from dashboard Yes
Content-Type Should be "application/json" Yes
Upload Image #Base64
POST /v1/image-cdn/upload/base64 HTTP/1.1
Host: maxservice.maxlimited.net
apikey: 1234567890abcdef1234567890abcdef
Content-Type: application/json
-d {"image": "base64StringHere"}
Image Upload Success Response
{
  "user_id": 1,
  "path": "img_cdn/",
  "name": "yusheyxonb_1_34.png",
  "file_size": 38,
  "format": "png",
  "original_file_name": "yusheyxonb_1_34.png",
  "uri": "img_cdn/yusheyxonb_1_34.png",
  "updated_at": "2025-11-04T17:53:01.000000Z",
  "created_at": "2025-11-04T17:53:01.000000Z",
  "id": 18,
  "url": "http://max-service.test/img_cdn/yusheyxonb_1_34.png"
}
Delete Request
POST /v1/image-cdn/destroy HTTP/1.1
Host: maxservice.maxlimited.net
apikey: 1234567890abcdef1234567890abcdef
Content-Type: application/json
-d {"id": 123}
More Documentation

For complete documentation including Address Verification, Order Tracking, and other API services, please download our Postman Collection or check our API Reference Guide.