Get All Currencies
GET https://api.sfox.com/v1/currency
Retrieve a list of currencies your account has access to. Currency settings are returned in the response.
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/currency'const axios = require('axios');
axios({
method: 'get',
url: 'https://api.sfox.com/v1/currency',
headers: {
'Authorization': 'Bearer <API_KEY>'
}
}).then(response => {
console.log(response)
}).catch(err => {
console.error(err)
});import requests
data = requests.get(
"https://api.sfox.com/v1/currency",
headers={
"Authorization": "Bearer <API_KEY>",
}
)
print(data)Last updated