Skip to content

Latest commit

 

History

History
95 lines (71 loc) · 3.17 KB

File metadata and controls

95 lines (71 loc) · 3.17 KB

Chainlink External Adapter for Bitso

1.4.32 v2

Base URL https://api.bitso.com/v3

This document was generated automatically. Please see README Generator for more info.

Environment Variables

Required? Name Description Type Options Default
API_ENDPOINT string https://api.bitso.com/v3

Data Provider Rate Limits

Name Requests/credits per second Requests/credits per minute Requests/credits per hour Note
public 60 120
private 300

Input Parameters

Every EA supports base input parameters from this list

Required? Name Description Type Options Default
endpoint The endpoint to use string crypto, ticker crypto

Crypto Endpoint

NOTE: the price endpoint is temporarily still supported, however, is being deprecated. Please use the crypto endpoint instead.

Supported names for this endpoint are: crypto, ticker.

Input Params

Required? Name Aliases Description Type Options Default Depends On Not Valid With
base coin, from The symbol of the currency to query string
quote market, to The symbol of the currency to convert to string

Example

Request:

{
  "id": "1",
  "data": {
    "base": "BTC",
    "quote": "ARS",
    "endpoint": "ticker"
  },
  "debug": {
    "cacheKey": "hSR6+zXoUHi/vgQ+myhslIXWkKQ="
  },
  "rateLimitMaxAge": 1111
}

Response:

{
  "jobRunID": "1",
  "data": {
    "success": true,
    "payload": {
      "high": "13504981.32",
      "last": "12550294.29",
      "created_at": "2021-11-16T18:50:20+00:00",
      "book": "btc_ars",
      "volume": "5.79730623",
      "vwap": "12806994.5372860099",
      "low": "12100000.00",
      "ask": "12550291.01",
      "bid": "12520297.85",
      "change_24": "-849449.19"
    },
    "result": 12806994.53728601
  },
  "result": 12806994.53728601,
  "statusCode": 200,
  "providerStatusCode": 200
}

MIT License