Kakaclo Api Docs
  • Welcome!
  • Quick Start
  • Release Notes
    • 2023-08 Add API token refresh function, logistics channel to add Express
    • 2023-07 product api increase supplierLevel info
    • 2023-06 Order Automatic Split interface changes
    • 2023-04 Product CountryAndWarehouse interface changes
    • 2023-04 Order V1 Version And Order V2 Version
    • 2022-12 Order V2 Version
  • API Usage
    • API Endpoint
    • Rate Limits
  • Admin API
    • Product
      • Category
      • Products
      • CountryAndWarehouse
      • Stock
      • Product API pull suggestion
    • Order V1(Outdated)
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
    • Order V2
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
      • Automatic Split Logistics Channel
    • Custom Product
      • Get Design Category Name List
      • Get Design Model List
      • Get Design Model Detail
      • Get Custom Designed List
      • Get Custom Designed Detail
      • Create designed product orders and get order list
      • Get KakaClo pod-designer address
      • Save POD Designed Product
    • Payment
      • Query Balance
Powered by GitBook
On this page
  • Get your API keys
  • API Endpoint
  • Make your first request
  • Query category

Quick Start

Good to know: A quick start guide can be good to help folks get up and running with your API in a few steps. Some people prefer diving in with the basics rather than meticulously reading every page of documentation!

Get your API keys

Your API requests are authenticated using API Access-Token. Any request that doesn't include an API key will return an error.

Apps must authenticate using OAuth 2.0 to use kakaclo open API resources.you can get API Access-Token from your business manager.

API Endpoint

After you get your Access-Token, it's very easy to start making API call to kakaclo open API.All endpoints are only accessible via HTTPS and are located at https://developer.kakaclo.com/openapi

testing environment :https://test-developer.kakaclo.com/openapi

Access-Token needs to be put in the http request header,Authorization: Bearer YOU_ACCES-TOKEN

Make your first request

To make your first request, send an authenticated request to the products endpoint. This will query a product, which is nice.

Query category

GET https://developer.kakaclo.com/openapi/v1/product/category

{
    "name"="Wilson",
    "owner": {
        "id": "sha7891bikojbkreuy",
        "name": "Samuel Passet",
    "species": "Dog",}
    "breed": "Golden Retriever",
}

Take a look at how you might call this method using our official libraries, or via curl:

curl --request GET \
     --url 'https://developer.kakaclo.com/openapi/v1/product/category' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer YOU_ACCES-TOKEN' 
PreviousWelcome!NextRelease Notes

Last updated 2 years ago