getInfo

Returns all information about transaction

GET /trades/getInfo

Headers

Body

Response

Example

const options = {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
    Y_API_KEY: 'Your API Key',
    Signature: 'e4ae46c268b77ad7fb7d12da1eeb8ad3218779c52c926c63407971da7537848e'
  },
  body: '{"uniq_id":"0sv0c0c02da105aa6b7fbzf1zv05444d8a0ccd4c"}'
};

fetch('https://api.yellowchanger.com/trades/getInfo', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

Last updated