Skip to main content

Build on the till

Hike's REST API reads and writes what happens behind the counter: the catalogue and its stock levels, the customers, and every sale as it is rung up. Any language that can make an HTTP request can use it.

GET /api/v1/brands/get_all?page_size=2&Skip_count=0
Authorization: Bearer …
200 OK
{
"totalCount": 348,
"items": [
  { "id": 41, "name": "Allpress",  "isActive": true },
  { "id": 42, "name": "Ashgrove",  "isActive": true }
]
}
Step 1

Become a partner

A free Hike Partner account is what lets you register an app against the platform.

Step 2

Register your app

Adding your app in the Partner Dashboard issues the developer key every call depends on.

Step 3

Get a token

Exchange your key for an access token, then call any endpoint on a store's behalf.

Where to go next