Support Center

Query Parameters

How to use query parameters

Our APIs are customizable and are allow our users to supply various input parameters. Following quick guidelines are applied when the user sends the input query parameters

  • Parameter values must be comma-delimited when requesting multiple.

    • i.e. ?symbols=BTCUSD,ETHUSD is correct.
       

  • Case does not matter when passing values to a parameter unless specified in the API documentation.

    • i.e. Both ?symbols=btcusd and ?symbols=BTCUSD will work.
       

  • Be sure to url-encode the values you pass.

    • i.e. ?symbols=AA+ encoded is ?symbols=AA%2b.