- Auth
- Apps Oauth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a Reservation
- Cancel Claim's Fulfillment
- Ship a Claim's Fulfillment
- Cancel Swap's Fulfilmment
- Get Order Reservations
- Add a Shipping Method
- Create a Refund
- Get an Order
- Update an Order
- Create a Fulfillment
- Cancel a Swap
- List Orders
- Create a Swap
- Complete an Order
- Create a Swap Fulfillment
- Cancel a Claim
- Process a Swap Payment
- Ship a Fulfillment
- Capture an Order's Payments
- Archive Order
- Update a Claim
- Request a Return
- Create a Claim Fulfillment
- Ship a Swap's Fulfillment
- Cancel a Fulfilmment
- Create a Claim
- Cancel an Order
- Order Edits
- Payments
- Payment Collections
- Product Collections
- Product Tags
- Product Types
- Product Variants
- Price Lists
- Products
- Product Categories
- Publishable Api Keys
- Reservations
- Regions
- Return Reasons
- Returns
- Sales Channels
- Shipping Options
- Shipping Profiles
- Stock Locations
- Store
- Swaps
- Uploads
- Tax Rates
- Users
List Currency
GET
/admin/currencies
Currencies
code
. The currencies can also be sorted or paginated.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.medusa-commerce.com/admin/currencies'
Response Response Example
{
"count": 0,
"offset": 0,
"limit": 0,
"currencies": [
{
"symbol": "$",
"symbol_native": "$",
"name": "US Dollar",
"includes_tax": false,
"code": "usd"
}
]
}
Request
Query Params
code
stringÂ
optional
includes_tax
stringÂ
optional
order
stringÂ
optional
offset
numberÂ
optional
limit
numberÂ
optional
Responses
🟢200OK
application/json
Body
count
integerÂ
required
offset
integerÂ
required
limit
integerÂ
required
currencies
array[object (Currency) {5}]Â
required
symbol
stringÂ
required
Example:
$
symbol_native
stringÂ
required
Example:
$
name
stringÂ
required
Example:
US Dollar
includes_tax
booleanÂ
optional
Default:
false
code
stringÂ
required
Example:
usd
Modified at 2023-10-10 11:56:36