Project

General

Profile

API - Browsing - View category

URL: /the-category-url/
Method: GET
Optional parameters: sort=stock%7Cdescending&pagesize=10&display=promo

$api_id = 1;
$api_key = 'testpass';
$hostname = 'https://example.com'; // no trailing slash

# fetch data
$url = '/the-category-url/';
$post_data = array();
$user_token = 'xxx'; // is required here. Get it from Your DB after Token generation
$extra_headers = array(
    'X-API-ID: ' . $api_id,
    'X-API-Hash: ' . md5($api_key . $url. http_build_query($post_data)),
    'X-User-Token: ' . $user_token
);

header('Content-Type: application/json; charset=utf-8');
echo sendRequest($hostname . $url, $post_data, $extra_headers);

Succes message:

{
    has_error: false,
    messages: {
        section: "view-category" 
    },
    results: {
        sort: [],
        category: {},
        pagination: []
    }
}

Error message:

{
    has_error: true,
    messages: [
        "Invalid URL: 404" 
    ],
    results: [ ]
}

Go to top