Skip to main content
GET
/
api
/
v3
/
store
/
currencies
Spree SDK
import { createSpreeClient } from '@spree/sdk'

const client = createSpreeClient({
  baseUrl: 'https://your-store.com',
  publishableKey: '<api-key>',
})

const currencies = await client.store.currencies.list()
{
  "data": [
    {
      "iso_code": "USD",
      "name": "United States Dollar",
      "symbol": "$"
    },
    {
      "iso_code": "EUR",
      "name": "Euro",
      "symbol": "€"
    }
  ]
}

Authorizations

x-spree-api-key
string
header
required

Publishable API key for store access

Headers

x-spree-api-key
string
required

Response

currencies found

data
object[]
required