Skip to main content
GET
/
analytics
/
currencies
Get supported analytics currencies
curl --request GET \
  --url https://api.qonversion.io/v4/analytics/currencies \
  --header 'Authorization: Bearer <token>'
{
  "object": "analytics_currencies",
  "url": "/v4/analytics/currencies",
  "currencies": [
    "USD",
    "EUR",
    "GBP",
    "JPY",
    "CNY",
    "AED",
    "AUD",
    "BRL",
    "CAD",
    "CHF",
    "HKD",
    "INR",
    "KRW",
    "MXN",
    "NOK",
    "NZD",
    "RUB",
    "SEK",
    "SGD",
    "TRY",
    "ZAR"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Query Parameters

from
integer<int64>

Accepted for forward-compatibility; currently ignored — the currency list does not depend on the time range.

to
integer<int64>
environment
enum<integer>
default:1
Available options:
0,
1

Response

List of supported currency codes.

object
enum<string>
required
Available options:
analytics_currencies
url
string
required
currencies
string[]
required

Three-letter ISO 4217 codes, USD first.

Pattern: ^[A-Z]{3}$