# currencies Get all enabled currencies in the store ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { currencies { # Fields from Currency type } } ``` ## Arguments This query accepts no arguments. ## Return Type Returns a list of [`Currency`](/reference/storefront/1.3.0/objects/currency) objects containing all enabled currencies available in the store. ## Example ```graphql query { currencies { code name symbol } } ``` ## Related Types - [`Currency`](/reference/storefront/1.3.0/objects/currency)