{"openapi":"3.0.3","info":{"title":"HIOBuy Open Platform API","version":"1.0.0","description":"China e-commerce sourcing API — product parse, orders, warehouse, shipping, tracking."},"servers":[{"url":"https://api.hiobuy.com"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Key"}},"schemas":{"Error":{"type":"object","properties":{"error":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"request_id":{"type":"string"}}}}}}},"paths":{"/v1/products/parse":{"post":{"summary":"Parse product from URL","tags":["Products"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"url":{"type":"string"}},"required":["url"]}}}},"responses":{"200":{"description":"Parsed product"}}}},"/v1/products/search":{"get":{"summary":"Search products","tags":["Products"],"parameters":[{"name":"q","in":"query","required":true,"schema":{"type":"string"}},{"name":"channel","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Search results"}}}},"/v1/products/translate":{"post":{"summary":"Translate product fields","tags":["Products"],"responses":{"200":{"description":"Translated product"}}}},"/v1/orders":{"get":{"summary":"List orders","tags":["Orders"],"responses":{"200":{"description":"OK"}}},"post":{"summary":"Create order","tags":["Orders"],"responses":{"201":{"description":"Created"}}}},"/v1/warehouse":{"get":{"summary":"Warehouse status","tags":["Warehouse"],"responses":{"200":{"description":"OK"}}}},"/v1/shipments":{"post":{"summary":"Create shipment","tags":["Shipping"],"responses":{"201":{"description":"Created"}}}},"/v1/tracking":{"get":{"summary":"Track shipment","tags":["Tracking"],"responses":{"200":{"description":"OK"}}}}}}