Project

General

Profile

API - Account - Price alert

Price alerts list

URL: /account/price-alerts/
Method: GET

Code sample:

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

# fetch data
$url = '/account/price-alerts/';
$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: [ ],
    results: {
        12345: {},
        56789: {}
    }
}

Price alerts delete

URL: /account/price-alerts/
Method: POST

Code sample:

# fetch data
$url = '/account/price-alerts/';
$post_data = array(
    'price_alerts' => array(
        12345,
        56789,
    )
);

Succes message:

{
    has_error: false,
    messages: [ ],
    results: {
        request_status: "ok",
        request_message: "" 
    }
}

Go to top