HT Partner API
  1. SKUs
HT Partner API
  • Orders
    • Retrieve all orders
      GET
    • Order count by tag
      GET
    • Create order
      POST
  • Clients
    • Create client
      POST
    • Retrieve client
      GET
    • Update client
      PUT
    • Create setup intent
      POST
    • Create ephemeral key
      POST
  • SKUs
    • Retrieve all SKUs
      GET
    • Check ZIP
      POST
  • Schemas
    • Schemas
    • Response
      • ErrorResponse
    • Common
      • Client
      • SetupIntent
      • Error
      • SkuQuestion
      • Sku
      • Cart
      • Order
      • SkuShort
    • Params
      • ClientParams
    • Params
      • CartItem
  1. SKUs

Retrieve all SKUs

Staging
https://apis.hellotech.com
Staging
https://apis.hellotech.com
GET
/api/partners/skus

Request

Authorization
Add parameter in header
Api-Key
Example:
Api-Key: ********************
Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apis.hellotech.com/api/partners/skus' \
--header 'Accept-Encoding: application/json' \
--header 'Api-Key: <api-key>'

Responses

🟢200OK
application/json
Body

Example
{
    "status": "string",
    "skus": [
        {
            "id": 0,
            "name": "string",
            "sku_icon": {
                "medium": "string",
                "medium_retina": "string",
                "thumb": "string",
                "original": "string"
            },
            "hero_image": {
                "medium": "string",
                "medium_retina": "string",
                "thumb": "string",
                "original": "string"
            },
            "hero_mobile_image": {
                "medium": "string",
                "medium_retina": "string",
                "thumb": "string",
                "original": "string"
            }
        }
    ]
}
Modified at 2026-02-23 11:32:42
Previous
Create ephemeral key
Next
Check ZIP
Built with