Home / Platform Integrations / API Docs

SHIPKOO API


The SHIPKOO API allows your app to access Shipkoo's entire product catalog, along with their real-time inventory information. It also enables managing and processing your orders on your own platform.

As a Reseller account, you are provided with your own unique API Token that you can use to make API calls to the SHIPKOO API

您成为Shipkoo酷运的会员后,我们将会提供您经销商帐户并且得到一个专属的API Token,可用于对SHIPKOO酷运 API进行API调适

리셀러 계정으로 SHIPKOO API에 API를 호출하는 데 사용할 수 있는 고유한 API 토큰이 제공됨


GETTING YOUR API TOKEN

  • Navigate to your My Account page.
  • Click on the API tab.

MAKING AN API CALL

Use your API Token as a Bearer token in the Authorization header of the request.

在请求的Authorization标头中将您的API Token用作承载Token。

API 토큰을 요청의 인증 헤더에서 베어러 토큰으로 사용하십시오.

リクエストのAuthorizationヘッダーでベアラートークンとしてAPIトークンを使用します。

Here's a sample code that you can run on your terminal:

$ curl https://shipkoo.com/api/product \

-H 'Authorization: Bearer {YOUR-API-TOKEN}' \

-H 'Accept: application/json'

Note: Make sure to replace the API Token with what is provided to your account.