autocomplete

Returns all currencies of the user returned in a basic auto-complete array. This endpoint is DEPRECATED and I suggest you DO NOT use it.

get/v1/autocomplete/currencies-with-code

Query parameters

querystring string

The autocomplete search query.

limitinteger

The number of items returned.

Headers

X-Trace-Idstring uuid
Example:40c71bbb-c676-4f24-83cf-cc725d7d7a00

Unique identifier associated with this request.

Response

A list of currencies with very basic information and the currency code between brackets. This endpoint is DEPRECATED and I suggest you DO NOT use it.

idstring string required
namestring string required

Currency name with the code between brackets.

codestring string required

Currency code.

symbolstring string required
decimal_placesinteger required

Example response

[
  {
    "id": "2",
    "name": "Currency name (XCN)",
    "code": "EUR",
    "symbol": "$",
    "decimal_places": 2
  }
]

Changes

No recorded changes to this endpoint across all 1 revision of this API.