> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Currency Rates

Get a list of all currency exchange rates.

<Note>
  External Documentation

  To learn more, visit the [Oracle Netsuite documentation](https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2024.2/index.html#tag-currencyRate).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                   |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Limit            | Specify the number of records retrieved in the response.                                                                                                                                                                                                      |
  | Offset           | Specify the offset at which to start record retrieval.                                                                                                                                                                                                        |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                              |
  | Search Query     | The search query used to filter results.<br /><br />**Note**: For more information about the `Search Query` parameter format, visit [Oracle Netsuite's documentation](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_1545222128.html). |
</div>

## Example Output

```json theme={"dark"}
{
	"links": [
		{
			"rel": "next",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate?limit=10&offset=10"
		},
		{
			"rel": "last",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate?limit=10&offset=50"
		},
		{
			"rel": "self",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyRate"
		}
	],
	"count": 10,
	"hasMore": true,
	"items": [
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/8"
				}
			],
			"id": "8"
		},
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/9"
				}
			],
			"id": "9"
		},
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/10"
				}
			],
			"id": "10"
		}
	],
	"offset": 0,
	"totalResults": 60
}
```

## Workflow Library Example

[List Currency Rates with Oracle Netsuite and Send Results Via Email](https://library.blinkops.com/workflows/list-currency-rates-with-oracle-netsuite-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-currency-rates-with-oracle-netsuite-and-send-results-via-email/canvas" />
</div>
