Pricing
Secure cloud network used for marketplace API connections
API documentation

Make the first authenticated request in minutes

Use the quickstart, endpoint map and request conventions to connect a server-side application to the marketplace API.

Quickstart

Three steps to a response

  1. 01

    Create an API key

    Choose the required scopes and keep the secret in your server environment.

  2. 02

    Send a request

    Pass the key as a Bearer token and provide platform-specific parameters.

  3. 03

    Handle the response

    Validate status, use normalized fields and log the request ID for support.

const response = await fetch(
  "https://api.atphosting24.com/v1/products/search?q=keyboard&platform=taobao",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);

const data = await response.json();
Keep keys server-side. Never expose a production API key in browser code, a public repository or a mobile application bundle.

Endpoint map

Core resources

Availability depends on the selected plan and connector approval.

MethodEndpointPurpose
GET/v1/products/searchSearch normalized marketplace catalogs
GET/v1/products/{id}Read product, variation and seller details
POST/v1/products/image-searchFind products from an image
POST/v1/translateTranslate marketplace content
POST/v1/ordersCreate a sourcing order
GET/v1/orders/{id}Read order and fulfilment status
GET/v1/logistics/{tracking}Read normalized tracking events
POST/v1/webhooksRegister an event destination

Successful requests

Responses include data, pagination where relevant and a request ID that can be used for tracing.

Rate limits

Use response headers to monitor remaining quota and exponential backoff for retryable responses.

Errors

Errors return a stable code, readable message and request ID. Validation errors identify the affected field.

HTTPS onlyJSON requests and responsesBearer authenticationRequest IDs on every response
Clear scope, accountable delivery

Move from sample request to production integration

Choose a plan or share the required marketplaces and workflow for guided onboarding.