{ "info": { "_postman_id": "5b7a9924-99e9-4a4f-8541-f73f127202e3", "name": "Twelve Data API", "description": "## Overview\n\nWelcome to Twelve Data developer docs \u2014 your gateway to comprehensive financial market data through a powerful and easy-to-use API.\nTwelve Data provides access to financial markets across over 50 global countries, covering more than 1 million public instruments, including stocks, forex, ETFs, mutual funds, commodities, and cryptocurrencies.\n\n## Quickstart\n\nTo get started, you'll need to sign up for an API key. Once you have your API key, you can start making requests to the API.\n\n### Step 1: Create Twelve Data account\n\nSign up on the Twelve Data website to create your account [here](https://twelvedata.com/register). This gives you access to the API dashboard and your API key.\n\n### Step 2: Get your API key\n\nAfter signing in, navigate to your [dashboard](https://twelvedata.com/account/api-keys) to find your unique API key. This key is required to authenticate all API and WebSocket requests.\n\n### Step 3: Make your first request\n\nTry a simple API call with cURL to fetch the latest price for Apple (AAPL):\n\n```\ncurl \"https://api.twelvedata.com/price?symbol=AAPL&apikey=your_api_key\"\n```\n\n### Step 4: Make a request from Python or Javascript\n\nUse our client libraries or standard HTTP clients to make API calls programmatically. Here\u2019s an example in [Python](https://github.com/twelvedata/twelvedata-python) and [Node.js](https://github.com/twelvedata/twelvedata-node):\n\n#### Python (using official Twelve Data SDK):\n\n```python\nfrom twelvedata import TDClient\n\n# Initialize client with your API key\ntd = TDClient(apikey=\"your_api_key\")\n\n# Get latest price for Apple\nprice = td.price(symbol=\"AAPL\").as_json()\n\nprint(price)\n```\n\n#### JavaScript (Node.js):\n\n```javascript\nimport { MarketDataApi, CreateConfig } from \"@twelvedata/twelvedata-node\";\n\nconst config = CreateConfig('your_api_key');\nconst api = new MarketDataApi(config);\n\nasync function main() {\n  const response = await api.getPrice({\n    symbol: \"AAPL\",\n  });\n  console.log(response.data);\n}\n\nmain().catch(console.error);\n```\n\n### Step 5: Perform correlation analysis between Tesla and Microsoft prices\n\nFetch historical price data for Tesla (TSLA) and Microsoft (MSFT) and calculate the correlation of their closing prices:\n\n```python\nfrom twelvedata import TDClient\nimport pandas as pd\n\n# Initialize client with your API key\ntd = TDClient(apikey=\"your_api_key\")\n\n# Fetch historical price data for Tesla\ntsla_ts = td.time_series(\n    symbol=\"TSLA\",\n    interval=\"1day\",\n    outputsize=100\n).as_pandas()\n\n# Fetch historical price data for Microsoft\nmsft_ts = td.time_series(\n    symbol=\"MSFT\",\n    interval=\"1day\",\n    outputsize=100\n).as_pandas()\n\n# Align data on datetime index\ncombined = pd.concat(\n    [tsla_ts['close'].astype(float), msft_ts['close'].astype(float)],\n    axis=1,\n    keys=[\"TSLA\", \"MSFT\"]\n).dropna()\n\n# Calculate correlation\ncorrelation = combined[\"TSLA\"].corr(combined[\"MSFT\"])\nprint(f\"Correlation of closing prices between TSLA and MSFT: {correlation:.2f}\")\n```\n\n### Authentication\n\nAuthenticate your requests using one of these methods:\n\n#### Query parameter method\n```\nGET https://api.twelvedata.com/endpoint?symbol=AAPL&apikey=your_api_key\n```\n\n#### HTTP header method (recommended)\n```\nAuthorization: apikey your_api_key\n```\n\n##### API key useful information\n\n\n### API endpoints\n\n Service | Base URL |\n---------|----------|\n REST API | `https://api.twelvedata.com` |\n WebSocket | `wss://ws.twelvedata.com` |\n\n### Parameter guidelines\n\n\n### Response handling\n\n#### Default format\nAll responses return JSON format by default unless otherwise specified.\n\n#### Null values\nImportant: Some response fields may contain `null` values when data is unavailable for specific metrics. This is expected behavior, not an error.\n\n##### Best Practices:\n\n\n#### Error handling\nStructure your code to gracefully handle:\n\n\n##### Best practices\n\n\n## Errors\n\nTwelve Data API employs a standardized error response format, delivering a JSON object with `code`, `message`, and `status` keys for clear and consistent error communication.\n\n### Codes\n\nBelow is a table of possible error codes, their HTTP status, meanings, and resolution steps:\n\n Code | status | Meaning | Resolution |\n --- | --- | --- | --- |\n **400** | Bad Request | Invalid or incorrect parameter(s) provided. | Check the `message` in the response for details. Refer to the API Documenta\u00adtion to correct the input. |\n **401** | Unauthor\u00adized | Invalid or incorrect API key. | Verify your API key is correct. Sign up for a key here. |\n **403** | Forbidden | API key lacks permissions for the requested resource (upgrade required). | Upgrade your plan here. |\n **404** | Not Found | Requested data could not be found. | Adjust parameters to be less strict as they may be too restrictive. |\n **414** | Parameter Too Long | Input parameter array exceeds the allowed length. | Follow the `message` guidance to adjust the parameter length. |\n **429** | Too Many Requests | API request limit reached for your key. | Wait briefly or upgrade your plan here. |\n **500** | Internal Server Error | Server-side issue occurred; retry later. | Contact support here for assistance. |\n\n### Example error response\n\nConsider the following invalid request:\n\n```\nhttps://api.twelvedata.com/time_series?symbol=AAPL&interval=0.99min&apikey=your_api_key\n```\n\nDue to the incorrect `interval` value, the API returns:\n\n```json\n{\n  \"code\": 400,\n  \"message\": \"Invalid **interval** provided: 0.99min. Supported intervals: 1min, 5min, 15min, 30min, 45min, 1h, 2h, 4h, 8h, 1day, 1week, 1month\",\n  \"status\": \"error\"\n}\n```\n\nRefer to the API Documentation for valid parameter values to resolve such errors.\n\n## Libraries\n\nTwelve Data provides a growing ecosystem of libraries and integrations to help you build faster and smarter in your preferred environment. Official libraries are actively maintained by the Twelve Data team, while selected community-built libraries offer additional flexibility.\n\nA full list is available on our [GitHub profile](https://github.com/search?q=twelvedata).\n\n### Official SDKs\n\n\n### AI integrations\n\n\n### Spreadsheet add-ons\n\n\n### Community libraries\n\nThe community has developed libraries in several popular languages. You can explore more community libraries on [GitHub](https://github.com/search?q=twelvedata).\n\n\n### Other Twelve Data repositories\n\n\n### API specification\n", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:15.000Z", "lastUpdatedBy": "35240", "uid": "35240-5b7a9924-99e9-4a4f-8541-f73f127202e3" }, "item": [ { "name": "ad", "item": [ { "name": "Accumulation/distribution", "id": "f2a78073-4a72-4da3-9885-45545e634e98", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Accumulation/Distribution (AD) endpoint provides data on the cumulative money flow into and out of a financial instrument, using its closing price, price range, and trading volume. This endpoint returns the AD line, which helps users identify potential buying or selling pressure and assess the strength of price movements." }, "response": [ { "id": "81a89bb2-77ea-45c2-9ed6-0f9730ce092c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"ad\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"ad\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-81a89bb2-77ea-45c2-9ed6-0f9730ce092c" }, { "id": "9e6d2a8a-5db9-4edc-bdb6-9b43bc7d6622", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9e6d2a8a-5db9-4edc-bdb6-9b43bc7d6622" }, { "id": "e0545e84-cd62-4f51-a89e-8ce002020fe4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e0545e84-cd62-4f51-a89e-8ce002020fe4" }, { "id": "46a57c8b-7fd3-484e-8920-fba95356c5eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-46a57c8b-7fd3-484e-8920-fba95356c5eb" }, { "id": "ce9bd90f-42e3-4a78-8f0e-98064e7977a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce9bd90f-42e3-4a78-8f0e-98064e7977a0" }, { "id": "2a86768e-44f9-4ae3-86f7-d19450d47b9a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a86768e-44f9-4ae3-86f7-d19450d47b9a" }, { "id": "cf10f6b7-3d51-4145-aa75-0c2cf43b13c9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cf10f6b7-3d51-4145-aa75-0c2cf43b13c9" }, { "id": "7d094164-2fd2-49ca-ae4f-308585156bf2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ad?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ad" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7d094164-2fd2-49ca-ae4f-308585156bf2" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f2a78073-4a72-4da3-9885-45545e634e98" } ], "id": "d00b3f14-a329-4ca4-9291-21ab3220df7c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d00b3f14-a329-4ca4-9291-21ab3220df7c" }, { "name": "add", "item": [ { "name": "Addition", "id": "a060606f-9a59-4f62-90f6-c60460d118c0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Addition (ADD) endpoint calculates the sum of two input data series, such as technical indicators or price data, and returns the combined result. This endpoint is useful for users who need to aggregate data points to create custom indicators or analyze the combined effect of multiple data series in financial analysis." }, "response": [ { "id": "2f73ac64-c5d4-4b43-af5d-04c351c80608", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"add\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"add\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2f73ac64-c5d4-4b43-af5d-04c351c80608" }, { "id": "ff70829e-2756-4411-846e-40ae67692a4b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff70829e-2756-4411-846e-40ae67692a4b" }, { "id": "6989815e-ecf4-4080-8312-7249214efdc0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6989815e-ecf4-4080-8312-7249214efdc0" }, { "id": "d74bf054-e3ce-41e7-a578-fab8b13d31fa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d74bf054-e3ce-41e7-a578-fab8b13d31fa" }, { "id": "47d09a19-844f-40cf-8918-64948ce60b32", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-47d09a19-844f-40cf-8918-64948ce60b32" }, { "id": "20925e7b-e70d-43a5-8ec6-24ec12d6f3a3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-20925e7b-e70d-43a5-8ec6-24ec12d6f3a3" }, { "id": "25212288-5e04-494d-832a-dca48ff89641", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-25212288-5e04-494d-832a-dca48ff89641" }, { "id": "e5474803-2312-4da6-a459-443461b14e99", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/add?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "add" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e5474803-2312-4da6-a459-443461b14e99" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a060606f-9a59-4f62-90f6-c60460d118c0" } ], "id": "0d29ff31-8182-413c-add3-c64869adeb7c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0d29ff31-8182-413c-add3-c64869adeb7c" }, { "name": "adosc", "item": [ { "name": "Accumulation/distribution oscillator", "id": "1c390635-0338-4566-a925-888c6881fd08", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Accumulation/Distribution Oscillator endpoint (ADOSC) calculates a momentum indicator that highlights shifts in buying or selling pressure by analyzing price and volume data over different time frames. It returns numerical values that help users identify potential trend reversals in financial markets." }, "response": [ { "id": "25264e0c-f547-41e1-9e0a-448fa83a2c72", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_period\": \"\",\n \"name\": \"\",\n \"slow_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"adosc\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"adosc\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-25264e0c-f547-41e1-9e0a-448fa83a2c72" }, { "id": "f8005744-5030-4cb7-8dc8-cc95f8c1b93c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f8005744-5030-4cb7-8dc8-cc95f8c1b93c" }, { "id": "08dbccb4-bbe3-434e-b822-c62cc2c1bf3f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-08dbccb4-bbe3-434e-b822-c62cc2c1bf3f" }, { "id": "5f8894ac-b887-46fa-a59d-9ef1897dd33f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5f8894ac-b887-46fa-a59d-9ef1897dd33f" }, { "id": "4c9f34ff-422d-485b-ae62-45bca433dbd3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c9f34ff-422d-485b-ae62-45bca433dbd3" }, { "id": "3b124ef3-6579-47b5-ae0b-5a589a4d1051", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3b124ef3-6579-47b5-ae0b-5a589a4d1051" }, { "id": "4c28a4ea-3d48-4d79-bd9e-5363fa7b03dc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c28a4ea-3d48-4d79-bd9e-5363fa7b03dc" }, { "id": "d8f3a223-7548-48a4-9c3c-623a850f4b32", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_period=12&slow_period=26&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d8f3a223-7548-48a4-9c3c-623a850f4b32" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c390635-0338-4566-a925-888c6881fd08" } ], "id": "a2ce8ea4-3f24-4e4e-ac01-556106a7d9fe", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a2ce8ea4-3f24-4e4e-ac01-556106a7d9fe" }, { "name": "adx", "item": [ { "name": "Average directional index", "id": "d105d45a-a75e-4d3f-915c-178c70a49aad", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Average Directional Index (ADX) endpoint provides data on the strength of a market trend, regardless of its direction. It returns a numerical value that helps users identify whether a market is trending or moving sideways." }, "response": [ { "id": "1393b3f7-9e82-4343-82ba-483df08a38a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"adx\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"adx\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1393b3f7-9e82-4343-82ba-483df08a38a0" }, { "id": "0f3bc915-7296-4f53-a00e-7adf626df045", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0f3bc915-7296-4f53-a00e-7adf626df045" }, { "id": "9739a738-d3e0-4e44-b5b6-9d5a8bfb6e3b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9739a738-d3e0-4e44-b5b6-9d5a8bfb6e3b" }, { "id": "4d1da093-4a37-4017-ab34-fb0a3e282de5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4d1da093-4a37-4017-ab34-fb0a3e282de5" }, { "id": "ed002e7f-13a6-4088-812f-c0cd8db310a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed002e7f-13a6-4088-812f-c0cd8db310a0" }, { "id": "ce6ef681-666f-423f-8d2a-8e9d164868fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce6ef681-666f-423f-8d2a-8e9d164868fc" }, { "id": "4da2af51-42de-4987-b244-c6453301625e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4da2af51-42de-4987-b244-c6453301625e" }, { "id": "e4d3b678-e298-41f2-8816-c79bcb3c5567", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e4d3b678-e298-41f2-8816-c79bcb3c5567" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d105d45a-a75e-4d3f-915c-178c70a49aad" } ], "id": "c36ca88d-dc3d-4bd0-96fc-2387310c23cc", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c36ca88d-dc3d-4bd0-96fc-2387310c23cc" }, { "name": "adxr", "item": [ { "name": "Average directional movement index rating", "id": "067ffe69-8855-4b38-b531-b4b44a30b6b7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Average Directional Movement Index Rating (ADXR) endpoint provides a smoothed measure of trend strength for a specified financial instrument. It returns the ADXR values, which help users assess the consistency of a trend over a given period by reducing short-term fluctuations. This endpoint is useful for traders and analysts who need to evaluate the stability of market trends for better timing of entry and exit points in their trading strategies." }, "response": [ { "id": "7cb9a5ab-5b0f-4a7c-b07c-fd4401a9533d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"adxr\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"adxr\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7cb9a5ab-5b0f-4a7c-b07c-fd4401a9533d" }, { "id": "1f5b8037-eca1-4780-8754-4c471fc47f28", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f5b8037-eca1-4780-8754-4c471fc47f28" }, { "id": "ee3c67fe-21fc-4538-a8a6-700c430d5031", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ee3c67fe-21fc-4538-a8a6-700c430d5031" }, { "id": "832b775a-c1ac-466d-8d1f-bd01a63d52d5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-832b775a-c1ac-466d-8d1f-bd01a63d52d5" }, { "id": "2e324be3-de55-4d26-acfb-0c2955da6e3a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e324be3-de55-4d26-acfb-0c2955da6e3a" }, { "id": "ef26eab2-caec-4fc6-8244-71c2d8181ca4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ef26eab2-caec-4fc6-8244-71c2d8181ca4" }, { "id": "4b433b95-1500-4ffa-9b0b-a810f731c7cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b433b95-1500-4ffa-9b0b-a810f731c7cb" }, { "id": "9b2b3c29-1a7a-45b0-9462-b5939b93a3ff", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/adxr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "adxr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9b2b3c29-1a7a-45b0-9462-b5939b93a3ff" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-067ffe69-8855-4b38-b531-b4b44a30b6b7" } ], "id": "5504464d-dd35-419e-868b-7154916a8989", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-5504464d-dd35-419e-868b-7154916a8989" }, { "name": "analyst_ratings", "item": [ { "name": "light", "item": [ { "name": "Analyst ratings snapshot", "id": "43494465-1ad7-44da-bb1e-b335f2ae433e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The analyst ratings snapshot endpoint provides a streamlined summary of ratings from analyst firms for both US and international markets. It delivers essential data on analyst recommendations, including buy, hold, and sell ratings, allowing users to quickly assess the general sentiment of analysts towards a particular stock." }, "response": [ { "id": "04f577b6-7432-477b-8323-8eb7a6624219", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\",\n \"ratings\": [\n {\n \"date\": \"\",\n \"firm\": \"\",\n \"rating_change\": \"\",\n \"rating_current\": \"\",\n \"rating_prior\": \"\"\n },\n {\n \"date\": \"\",\n \"firm\": \"\",\n \"rating_change\": \"\",\n \"rating_current\": \"\",\n \"rating_prior\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-04f577b6-7432-477b-8323-8eb7a6624219" }, { "id": "975a17ed-6e13-463a-b6ca-1ee2f58894e6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-975a17ed-6e13-463a-b6ca-1ee2f58894e6" }, { "id": "ffaee68a-934b-4074-86b8-b0337af976ee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ffaee68a-934b-4074-86b8-b0337af976ee" }, { "id": "ae71a6f7-08df-4f0f-a81b-f1c8058df48b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae71a6f7-08df-4f0f-a81b-f1c8058df48b" }, { "id": "64ffb4e0-fc25-40f5-b6f9-b595ef07d215", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64ffb4e0-fc25-40f5-b6f9-b595ef07d215" }, { "id": "e9a8149e-aea6-4641-8799-4f1b1b83b96d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e9a8149e-aea6-4641-8799-4f1b1b83b96d" }, { "id": "e48d1933-21a9-4ec3-91d4-306374084b4d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e48d1933-21a9-4ec3-91d4-306374084b4d" }, { "id": "da2ab7b4-c8dd-4bf2-9d2d-468744ac05cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/light?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30&country=", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "light" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-da2ab7b4-c8dd-4bf2-9d2d-468744ac05cb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-43494465-1ad7-44da-bb1e-b335f2ae433e" } ], "id": "5b64b1e9-fa1b-4786-b84e-e1f4ecd2f95a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-5b64b1e9-fa1b-4786-b84e-e1f4ecd2f95a" }, { "name": "us_equities", "item": [ { "name": "Analyst ratings US equities", "id": "16d72b5a-0d42-4970-869d-f8c5593f7025", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] }, "description": "The analyst ratings US equities endpoint provides detailed information on analyst ratings for U.S. stocks. It returns data on the latest ratings issued by various analyst firms, including the rating itself, the firm issuing the rating, and any changes in the rating. This endpoint is useful for users tracking analyst opinions on U.S. equities, allowing them to see how professional analysts view the potential performance of specific stocks." }, "response": [ { "id": "14db864c-dc0d-4918-bb89-1b6cdbf45923", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\",\n \"ratings\": [\n {\n \"date\": \"\",\n \"firm\": \"\",\n \"analyst_name\": \"\",\n \"rating_change\": \"\",\n \"rating_current\": \"\",\n \"rating_prior\": \"\",\n \"time\": \"\",\n \"action_price_target\": \"\",\n \"price_target_current\": \"\",\n \"price_target_prior\": \"\"\n },\n {\n \"date\": \"\",\n \"firm\": \"\",\n \"analyst_name\": \"\",\n \"rating_change\": \"\",\n \"rating_current\": \"\",\n \"rating_prior\": \"\",\n \"time\": \"\",\n \"action_price_target\": \"\",\n \"price_target_current\": \"\",\n \"price_target_prior\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-14db864c-dc0d-4918-bb89-1b6cdbf45923" }, { "id": "03d7ba74-490d-4ed7-b230-d6023cd1de49", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-03d7ba74-490d-4ed7-b230-d6023cd1de49" }, { "id": "2701226a-f47e-443c-a6ed-eb75ee46136d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2701226a-f47e-443c-a6ed-eb75ee46136d" }, { "id": "7c05761c-29c3-43fe-9f9f-017adebcad5d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c05761c-29c3-43fe-9f9f-017adebcad5d" }, { "id": "c8233f6d-be61-465f-b5b0-325966e6d64a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8233f6d-be61-465f-b5b0-325966e6d64a" }, { "id": "4ef8c909-e979-4246-8e20-c5b5fb67436a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ef8c909-e979-4246-8e20-c5b5fb67436a" }, { "id": "01bc145a-8284-4765-bbff-f4a9eea0cf33", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-01bc145a-8284-4765-bbff-f4a9eea0cf33" }, { "id": "c6f2807a-ad0a-4102-b113-584bf850e431", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/analyst_ratings/us_equities?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&rating_change=Maintains&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "analyst_ratings", "us_equities" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Filter by rating change action", "key": "rating_change", "value": "Maintains" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6f2807a-ad0a-4102-b113-584bf850e431" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-16d72b5a-0d42-4970-869d-f8c5593f7025" } ], "id": "8f1e7caa-0e9b-4bf8-adfa-4dd699169402", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-8f1e7caa-0e9b-4bf8-adfa-4dd699169402" } ], "id": "daa49277-3c26-4f41-baa0-ac4fdbdf7d4b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-daa49277-3c26-4f41-baa0-ac4fdbdf7d4b" }, { "name": "api_usage", "item": [ { "name": "API usage", "id": "456c6ddb-118d-42b6-a44b-661afa759fc1", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] }, "description": "The API Usage endpoint provides detailed information on your current API usage statistics. It returns data such as the number of requests made, remaining requests, and the reset time for your usage limits. This endpoint is essential for monitoring and managing your API consumption to ensure you stay within your allocated limits." }, "response": [ { "id": "d995717f-2da1-4564-8d52-31c3688281a3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"current_usage\": \"\",\n \"plan_limit\": \"\",\n \"timestamp\": \"\",\n \"daily_usage\": \"\",\n \"plan_daily_limit\": \"\",\n \"plan_category\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d995717f-2da1-4564-8d52-31c3688281a3" }, { "id": "5d1278a9-e495-4634-9ad6-d7ca5e4a8d1c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5d1278a9-e495-4634-9ad6-d7ca5e4a8d1c" }, { "id": "04a89dae-7f4a-4a2c-af9e-2c16e9dc04d3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-04a89dae-7f4a-4a2c-af9e-2c16e9dc04d3" }, { "id": "570b059c-87e6-412a-ada4-f6cfcc24b7a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-570b059c-87e6-412a-ada4-f6cfcc24b7a0" }, { "id": "99a64d5c-faaa-4395-90c4-6ac8f1babccd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-99a64d5c-faaa-4395-90c4-6ac8f1babccd" }, { "id": "694d86be-2baf-4495-aa9f-bb06710b7be4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-694d86be-2baf-4495-aa9f-bb06710b7be4" }, { "id": "0487e3c7-0729-442a-b975-3a64534bbb0d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0487e3c7-0729-442a-b975-3a64534bbb0d" }, { "id": "2bbb415b-9e60-485d-88db-5aac5a3c41de", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/api_usage?format=JSON&delimiter=;&timezone=UTC", "host": [ "{{baseUrl}}" ], "path": [ "api_usage" ], "query": [ { "description": "Output format", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. UTC for datetime at universal UTC standard
  • \n
  • 2. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "UTC" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2bbb415b-9e60-485d-88db-5aac5a3c41de" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-456c6ddb-118d-42b6-a44b-661afa759fc1" } ], "id": "f97631be-bb1a-42e9-b69a-f150d64e1d2d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f97631be-bb1a-42e9-b69a-f150d64e1d2d" }, { "name": "apo", "item": [ { "name": "Absolute price oscillator", "id": "93ea0c5d-31ea-431f-8e0b-2a036ce91e8a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Absolute Price Oscillator (APO) endpoint calculates the difference between two specified moving averages of a financial instrument's price, providing data that helps users identify potential price trends and reversals. The response includes the calculated APO values over a specified time period, which can be used to track momentum changes and assess the strength of price movements." }, "response": [ { "id": "c8070b3d-146c-4a58-bb02-96e35e958282", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_period\": \"\",\n \"ma_type\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"slow_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"apo\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"apo\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8070b3d-146c-4a58-bb02-96e35e958282" }, { "id": "87d69556-3199-4d0f-960d-c40e907ea020", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87d69556-3199-4d0f-960d-c40e907ea020" }, { "id": "8986bf8e-1776-4345-bc2d-1a2a2d9f24d4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8986bf8e-1776-4345-bc2d-1a2a2d9f24d4" }, { "id": "cfb0a011-6a39-423e-b5ec-3b3022b61868", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cfb0a011-6a39-423e-b5ec-3b3022b61868" }, { "id": "08769d04-1837-41da-a793-6f1fbb6943cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-08769d04-1837-41da-a793-6f1fbb6943cc" }, { "id": "c3b359b9-5268-4e98-85e3-53f53cd1944b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c3b359b9-5268-4e98-85e3-53f53cd1944b" }, { "id": "7e580ef1-5798-4d2e-874d-892a2e630f4e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7e580ef1-5798-4d2e-874d-892a2e630f4e" }, { "id": "58e768ce-69d5-4e78-aeb1-ff2a43331295", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/apo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "apo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58e768ce-69d5-4e78-aeb1-ff2a43331295" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93ea0c5d-31ea-431f-8e0b-2a036ce91e8a" } ], "id": "0f289771-da51-4af0-b6eb-b247579b1268", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0f289771-da51-4af0-b6eb-b247579b1268" }, { "name": "aroon", "item": [ { "name": "Aroon indicator", "id": "60387904-ee77-4207-96c0-20ef2e3ed0f6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Aroon Indicator endpoint provides data on the time elapsed since the highest high and lowest low within a specified period, helping users identify the presence and strength of market trends. It returns two values: Aroon Up and Aroon Down, which indicate the trend direction and momentum. This endpoint is useful for traders and analysts looking to assess trend patterns and potential reversals in financial markets." }, "response": [ { "id": "377c9de6-c0f8-46fe-bc5f-8430aafb2ff5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"aroon_down\": \"\",\n \"aroon_up\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"aroon_down\": \"\",\n \"aroon_up\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-377c9de6-c0f8-46fe-bc5f-8430aafb2ff5" }, { "id": "1b8e7a13-3912-4b2e-ab61-a14834a1a0af", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1b8e7a13-3912-4b2e-ab61-a14834a1a0af" }, { "id": "79e8b325-602f-4a8f-9510-f6801d952562", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-79e8b325-602f-4a8f-9510-f6801d952562" }, { "id": "c6dc9252-e041-49d1-84d5-b79463011557", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6dc9252-e041-49d1-84d5-b79463011557" }, { "id": "a223a03c-44f5-48b0-89cd-15e716e2a23d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a223a03c-44f5-48b0-89cd-15e716e2a23d" }, { "id": "134e370d-8f25-4abf-8204-a7b3c50e42f9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-134e370d-8f25-4abf-8204-a7b3c50e42f9" }, { "id": "bdc2ca36-6e98-462a-93e8-5c2a11a0e96a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bdc2ca36-6e98-462a-93e8-5c2a11a0e96a" }, { "id": "994fad35-a285-4c67-a023-5b0bdd177c2d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroon?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroon" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-994fad35-a285-4c67-a023-5b0bdd177c2d" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-60387904-ee77-4207-96c0-20ef2e3ed0f6" } ], "id": "b3024fee-890a-432d-8c01-0f7e16f489d5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b3024fee-890a-432d-8c01-0f7e16f489d5" }, { "name": "aroonosc", "item": [ { "name": "Aroon oscillator", "id": "124399ef-d511-4958-9da4-20d35e8fc6b6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Aroon Oscillator endpoint provides the calculated difference between the Aroon Up and Aroon Down indicators for a given financial instrument. It returns a time series of values that help users identify the strength and direction of a trend, as well as potential trend reversals. This data is useful for traders and analysts seeking to evaluate market trends over a specified period." }, "response": [ { "id": "4cc79753-6abe-4ef3-9b08-cfe0b2e7373a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"aroonosc\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"aroonosc\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4cc79753-6abe-4ef3-9b08-cfe0b2e7373a" }, { "id": "33819bd3-aa34-4966-94c2-7551ef00c2f9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-33819bd3-aa34-4966-94c2-7551ef00c2f9" }, { "id": "892875a3-8073-46bf-a60e-2aef4fd5f8cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-892875a3-8073-46bf-a60e-2aef4fd5f8cb" }, { "id": "89cdd49a-7f9c-4dac-b5aa-4e21abdf3889", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-89cdd49a-7f9c-4dac-b5aa-4e21abdf3889" }, { "id": "8137d039-97be-48c2-bcfe-79406aad5f7c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8137d039-97be-48c2-bcfe-79406aad5f7c" }, { "id": "72ffc79d-3a93-4b07-b28e-d467a1acf4f3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-72ffc79d-3a93-4b07-b28e-d467a1acf4f3" }, { "id": "2f5de301-4842-4a85-8fc0-b81dfe1d3f50", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2f5de301-4842-4a85-8fc0-b81dfe1d3f50" }, { "id": "d9286472-99fd-42cb-81f8-c2c8dd1e8071", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/aroonosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "aroonosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d9286472-99fd-42cb-81f8-c2c8dd1e8071" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-124399ef-d511-4958-9da4-20d35e8fc6b6" } ], "id": "46116b37-e408-448f-aff1-dfcde9f0fba9", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-46116b37-e408-448f-aff1-dfcde9f0fba9" }, { "name": "atr", "item": [ { "name": "Average true range", "id": "2a21516c-a70f-45c1-8a43-46f662626142", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Average True Range (ATR) endpoint provides data on market volatility by calculating the average range of price movement over a user-defined period. It returns numerical values representing the ATR for each time interval, allowing users to gauge the degree of price fluctuation in a financial instrument. This data is useful for setting stop-loss levels and determining optimal entry and exit points in trading strategies." }, "response": [ { "id": "90ea41ae-6b70-464b-b0a4-280312704129", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"atr\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"atr\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-90ea41ae-6b70-464b-b0a4-280312704129" }, { "id": "9967be8c-a0fe-4c83-8ace-08f8abc29967", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9967be8c-a0fe-4c83-8ace-08f8abc29967" }, { "id": "ebb2bb68-8da6-4d38-a2d4-68c5d856324c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ebb2bb68-8da6-4d38-a2d4-68c5d856324c" }, { "id": "ed4c158e-1ed4-4a87-ac8d-70a78a7230f1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed4c158e-1ed4-4a87-ac8d-70a78a7230f1" }, { "id": "15c9a7eb-728c-4b1f-b457-42bb3167c92c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-15c9a7eb-728c-4b1f-b457-42bb3167c92c" }, { "id": "cee95a0b-0e5a-4804-b34a-b66764de8f2d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cee95a0b-0e5a-4804-b34a-b66764de8f2d" }, { "id": "21a765c3-4157-4f85-affb-f203b1be87f1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21a765c3-4157-4f85-affb-f203b1be87f1" }, { "id": "eed5c400-388e-41ed-97bc-6408a2d22186", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/atr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "atr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eed5c400-388e-41ed-97bc-6408a2d22186" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a21516c-a70f-45c1-8a43-46f662626142" } ], "id": "d687a365-8963-40cf-8fb7-7abbe2fd70d1", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d687a365-8963-40cf-8fb7-7abbe2fd70d1" }, { "name": "avg", "item": [ { "name": "Average", "id": "36448447-d386-42b8-91f4-578e68f00c87", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Average (AVG) endpoint calculates the arithmetic mean of a specified data series over a chosen time period. It returns a smoothed dataset that helps users identify trends by reducing short-term fluctuations. This endpoint is useful for obtaining a clearer view of data trends, particularly in time series analysis." }, "response": [ { "id": "ec63aec9-6bb9-491f-ae1e-8a8264ff12dd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"avg\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"avg\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec63aec9-6bb9-491f-ae1e-8a8264ff12dd" }, { "id": "2423d80b-e411-4e9a-a30d-aa2fa603a5ed", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2423d80b-e411-4e9a-a30d-aa2fa603a5ed" }, { "id": "5760957e-3ff1-4648-a899-ee13806511bc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5760957e-3ff1-4648-a899-ee13806511bc" }, { "id": "c169b32b-5d11-4b43-bb52-3183638a3704", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c169b32b-5d11-4b43-bb52-3183638a3704" }, { "id": "2ee9c71b-c419-4527-9530-e1418baeff1f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2ee9c71b-c419-4527-9530-e1418baeff1f" }, { "id": "6fe28a6c-e2ee-4bed-abaf-3b1fcb656482", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6fe28a6c-e2ee-4bed-abaf-3b1fcb656482" }, { "id": "e1564d54-71ee-4625-802f-012a3e2b0fe7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e1564d54-71ee-4625-802f-012a3e2b0fe7" }, { "id": "42405e8a-aac1-45c7-99e2-0cb35b562736", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-42405e8a-aac1-45c7-99e2-0cb35b562736" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-36448447-d386-42b8-91f4-578e68f00c87" } ], "id": "f49ed620-78bd-4f20-a798-1bd28fa82970", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f49ed620-78bd-4f20-a798-1bd28fa82970" }, { "name": "avgprice", "item": [ { "name": "Average price", "id": "2d3803cf-f780-4610-9da2-7ef648c220ef", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Average Price (AVGPRICE) endpoint calculates and returns the mean value of a security's open, high, low, and close prices. This endpoint provides a straightforward metric to assess the overall price level of a security over a specified period." }, "response": [ { "id": "62076a2e-2bb8-4cf9-b38c-9f9fd25078bb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"avgprice\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"avgprice\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62076a2e-2bb8-4cf9-b38c-9f9fd25078bb" }, { "id": "859d2755-626b-425e-8d57-ab561e8eaec0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-859d2755-626b-425e-8d57-ab561e8eaec0" }, { "id": "efd91448-3067-4afc-a8d9-48793f498458", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-efd91448-3067-4afc-a8d9-48793f498458" }, { "id": "1c2d6d66-90a6-411b-a2bb-c0230107831c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c2d6d66-90a6-411b-a2bb-c0230107831c" }, { "id": "37a6c3cc-e1b2-4a90-acbd-92b9e91a553b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-37a6c3cc-e1b2-4a90-acbd-92b9e91a553b" }, { "id": "b69a254a-46e1-40de-b10e-073f5b4c96e4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b69a254a-46e1-40de-b10e-073f5b4c96e4" }, { "id": "7731a200-44b7-4064-9536-2bb22f572e74", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7731a200-44b7-4064-9536-2bb22f572e74" }, { "id": "d65235f6-026c-4182-a0c9-1287f8312009", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/avgprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "avgprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d65235f6-026c-4182-a0c9-1287f8312009" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2d3803cf-f780-4610-9da2-7ef648c220ef" } ], "id": "188fcf6c-97e5-4d59-929f-f77df044eb39", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-188fcf6c-97e5-4d59-929f-f77df044eb39" }, { "name": "balance_sheet", "item": [ { "name": "consolidated", "item": [ { "name": "Balance sheet consolidated", "id": "7c8fa9aa-94e4-4407-a1e8-b44d653a691b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The balance sheet consolidated endpoint provides a detailed overview of a company's raw balance sheet, including a comprehensive summary of its assets, liabilities, and shareholders' equity. This endpoint is useful for retrieving financial data that reflects the overall financial position of a company, allowing users to access critical information about its financial health and structure." }, "response": [ { "id": "127c8f84-7e19-4565-a70f-6d4f7b6e2abf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"balance_sheet\": [\n {\n \"fiscal_date\": \"\",\n \"assets\": {\n \"total_assets\": \"\",\n \"current_assets\": {\n \"total_current_assets\": \"\",\n \"cash_cash_equivalents_and_short_term_investments\": \"\",\n \"cash_and_cash_equivalents\": \"\",\n \"cash_equivalents\": \"\",\n \"cash_financial\": \"\",\n \"other_short_term_investments\": \"\",\n \"restricted_cash\": \"\",\n \"receivables\": {\n \"total_receivables\": \"\",\n \"accounts_receivable\": \"\",\n \"gross_accounts_receivable\": \"\",\n \"allowance_for_doubtful_accounts_receivable\": \"\",\n \"receivables_adjustments_allowances\": \"\",\n \"other_receivables\": \"\",\n \"due_from_related_parties_current\": \"\",\n \"taxes_receivable\": \"\",\n \"accrued_interest_receivable\": \"\",\n \"notes_receivable\": \"\",\n \"loans_receivable\": \"\"\n },\n \"inventory\": {\n \"total_inventory\": \"\",\n \"inventories_adjustments_allowances\": \"\",\n \"other_inventories\": \"\",\n \"finished_goods\": \"\",\n \"work_in_process\": \"\",\n \"raw_materials\": \"\"\n },\n \"prepaid_assets\": \"\",\n \"current_deferred_assets\": \"\",\n \"current_deferred_taxes_assets\": \"\",\n \"assets_held_for_sale_current\": \"\",\n \"hedging_assets_current\": \"\",\n \"other_current_assets\": \"\"\n },\n \"non_current_assets\": {\n \"total_non_current_assets\": \"\",\n \"financial_assets\": \"\",\n \"investments_and_advances\": \"\",\n \"other_investments\": \"\",\n \"investment_in_financial_assets\": \"\",\n \"held_to_maturity_securities\": \"\",\n \"available_for_sale_securities\": \"\",\n \"financial_assets_designated_as_fair_value_through_profit_or_loss_total\": \"\",\n \"trading_securities\": \"\",\n \"long_term_equity_investment\": \"\",\n \"investments_in_joint_ventures_at_cost\": \"\",\n \"investments_in_other_ventures_under_equity_method\": \"\",\n \"investments_in_associates_at_cost\": \"\",\n \"investments_in_subsidiaries_at_cost\": \"\",\n \"investment_properties\": \"\",\n \"goodwill_and_other_intangible_assets\": {\n \"goodwill\": \"\",\n \"other_intangible_assets\": \"\",\n \"total_goodwill_and_intangible_assets\": \"\"\n },\n \"net_ppe\": \"\",\n \"gross_ppe\": \"\",\n \"accumulated_depreciation\": \"\",\n \"leases\": \"\",\n \"construction_in_progress\": \"\",\n \"other_properties\": \"\",\n \"machinery_furniture_equipment\": \"\",\n \"buildings_and_improvements\": \"\",\n \"land_and_improvements\": \"\",\n \"properties\": \"\",\n \"non_current_accounts_receivable\": \"\",\n \"non_current_note_receivables\": \"\",\n \"due_from_related_parties_non_current\": \"\",\n \"non_current_prepaid_assets\": \"\",\n \"non_current_deferred_assets\": \"\",\n \"non_current_deferred_taxes_assets\": \"\",\n \"defined_pension_benefit\": \"\",\n \"other_non_current_assets\": \"\"\n },\n \"liabilities\": {\n \"total_liabilities_net_minority_interest\": \"\",\n \"current_liabilities\": {\n \"total_current_liabilities\": \"\",\n \"current_debt_and_capital_lease_obligation\": \"\",\n \"current_debt\": \"\",\n \"current_capital_lease_obligation\": \"\",\n \"other_current_borrowings\": \"\",\n \"line_of_credit\": \"\",\n \"commercial_paper\": \"\",\n \"current_notes_payable\": \"\",\n \"current_provisions\": \"\",\n \"payables_and_accrued_expenses\": {\n \"total_payables_and_accrued_expenses\": \"\",\n \"accounts_payable\": \"\",\n \"current_accrued_expenses\": \"\",\n \"interest_payable\": \"\",\n \"payables\": \"\",\n \"other_payable\": \"\",\n \"due_to_related_parties_current\": \"\",\n \"dividends_payable\": \"\",\n \"total_tax_payable\": \"\",\n \"income_tax_payable\": \"\"\n },\n \"pension_and_other_post_retirement_benefit_plans_current\": \"\",\n \"employee_benefits\": \"\",\n \"current_deferred_liabilities\": \"\",\n \"current_deferred_revenue\": \"\",\n \"current_deferred_taxes_liabilities\": \"\",\n \"other_current_liabilities\": \"\",\n \"liabilities_held_for_sale_non_current\": \"\"\n },\n \"non_current_liabilities\": {\n \"total_non_current_liabilities_net_minority_interest\": \"\",\n \"long_term_debt_and_capital_lease_obligation\": {\n \"total_long_term_debt_and_capital_lease_obligation\": \"\",\n \"long_term_debt\": \"\",\n \"long_term_capital_lease_obligation\": \"\"\n },\n \"long_term_provisions\": \"\",\n \"non_current_pension_and_other_postretirement_benefit_plans\": \"\",\n \"non_current_accrued_expenses\": \"\",\n \"due_to_related_parties_non_current\": \"\",\n \"trade_and_other_payables_non_current\": \"\",\n \"non_current_deferred_liabilities\": \"\",\n \"non_current_deferred_revenue\": \"\",\n \"non_current_deferred_taxes_liabilities\": \"\",\n \"other_non_current_liabilities\": \"\",\n \"preferred_securities_outside_stock_equity\": \"\",\n \"derivative_product_liabilities\": \"\",\n \"capital_lease_obligations\": \"\",\n \"restricted_common_stock\": \"\"\n },\n \"equity\": {\n \"total_equity_gross_minority_interest\": \"\",\n \"stockholders_equity\": \"\",\n \"common_stock_equity\": \"\",\n \"preferred_stock_equity\": \"\",\n \"other_equity_interest\": \"\",\n \"minority_interest\": \"\",\n \"total_capitalization\": \"\",\n \"net_tangible_assets\": \"\",\n \"tangible_book_value\": \"\",\n \"invested_capital\": \"\",\n \"working_capital\": \"\",\n \"capital_stock\": {\n \"common_stock\": \"\",\n \"preferred_stock\": \"\",\n \"total_partnership_capital\": \"\",\n \"general_partnership_capital\": \"\",\n \"limited_partnership_capital\": \"\",\n \"capital_stock\": \"\",\n \"other_capital_stock\": \"\",\n \"additional_paid_in_capital\": \"\",\n \"retained_earnings\": \"\",\n \"treasury_stock\": \"\",\n \"treasury_shares_number\": \"\",\n \"ordinary_shares_number\": \"\",\n \"preferred_shares_number\": \"\",\n \"share_issued\": \"\"\n },\n \"equity_adjustments\": {\n \"gains_losses_not_affecting_retained_earnings\": \"\",\n \"other_equity_adjustments\": \"\",\n \"fixed_assets_revaluation_reserve\": \"\",\n \"foreign_currency_translation_adjustments\": \"\",\n \"minimum_pension_liabilities\": \"\",\n \"unrealized_gain_loss\": \"\"\n },\n \"net_debt\": \"\",\n \"total_debt\": \"\"\n }\n }\n }\n },\n {\n \"fiscal_date\": \"\",\n \"assets\": {\n \"total_assets\": \"\",\n \"current_assets\": {\n \"total_current_assets\": \"\",\n \"cash_cash_equivalents_and_short_term_investments\": \"\",\n \"cash_and_cash_equivalents\": \"\",\n \"cash_equivalents\": \"\",\n \"cash_financial\": \"\",\n \"other_short_term_investments\": \"\",\n \"restricted_cash\": \"\",\n \"receivables\": {\n \"total_receivables\": \"\",\n \"accounts_receivable\": \"\",\n \"gross_accounts_receivable\": \"\",\n \"allowance_for_doubtful_accounts_receivable\": \"\",\n \"receivables_adjustments_allowances\": \"\",\n \"other_receivables\": \"\",\n \"due_from_related_parties_current\": \"\",\n \"taxes_receivable\": \"\",\n \"accrued_interest_receivable\": \"\",\n \"notes_receivable\": \"\",\n \"loans_receivable\": \"\"\n },\n \"inventory\": {\n \"total_inventory\": \"\",\n \"inventories_adjustments_allowances\": \"\",\n \"other_inventories\": \"\",\n \"finished_goods\": \"\",\n \"work_in_process\": \"\",\n \"raw_materials\": \"\"\n },\n \"prepaid_assets\": \"\",\n \"current_deferred_assets\": \"\",\n \"current_deferred_taxes_assets\": \"\",\n \"assets_held_for_sale_current\": \"\",\n \"hedging_assets_current\": \"\",\n \"other_current_assets\": \"\"\n },\n \"non_current_assets\": {\n \"total_non_current_assets\": \"\",\n \"financial_assets\": \"\",\n \"investments_and_advances\": \"\",\n \"other_investments\": \"\",\n \"investment_in_financial_assets\": \"\",\n \"held_to_maturity_securities\": \"\",\n \"available_for_sale_securities\": \"\",\n \"financial_assets_designated_as_fair_value_through_profit_or_loss_total\": \"\",\n \"trading_securities\": \"\",\n \"long_term_equity_investment\": \"\",\n \"investments_in_joint_ventures_at_cost\": \"\",\n \"investments_in_other_ventures_under_equity_method\": \"\",\n \"investments_in_associates_at_cost\": \"\",\n \"investments_in_subsidiaries_at_cost\": \"\",\n \"investment_properties\": \"\",\n \"goodwill_and_other_intangible_assets\": {\n \"goodwill\": \"\",\n \"other_intangible_assets\": \"\",\n \"total_goodwill_and_intangible_assets\": \"\"\n },\n \"net_ppe\": \"\",\n \"gross_ppe\": \"\",\n \"accumulated_depreciation\": \"\",\n \"leases\": \"\",\n \"construction_in_progress\": \"\",\n \"other_properties\": \"\",\n \"machinery_furniture_equipment\": \"\",\n \"buildings_and_improvements\": \"\",\n \"land_and_improvements\": \"\",\n \"properties\": \"\",\n \"non_current_accounts_receivable\": \"\",\n \"non_current_note_receivables\": \"\",\n \"due_from_related_parties_non_current\": \"\",\n \"non_current_prepaid_assets\": \"\",\n \"non_current_deferred_assets\": \"\",\n \"non_current_deferred_taxes_assets\": \"\",\n \"defined_pension_benefit\": \"\",\n \"other_non_current_assets\": \"\"\n },\n \"liabilities\": {\n \"total_liabilities_net_minority_interest\": \"\",\n \"current_liabilities\": {\n \"total_current_liabilities\": \"\",\n \"current_debt_and_capital_lease_obligation\": \"\",\n \"current_debt\": \"\",\n \"current_capital_lease_obligation\": \"\",\n \"other_current_borrowings\": \"\",\n \"line_of_credit\": \"\",\n \"commercial_paper\": \"\",\n \"current_notes_payable\": \"\",\n \"current_provisions\": \"\",\n \"payables_and_accrued_expenses\": {\n \"total_payables_and_accrued_expenses\": \"\",\n \"accounts_payable\": \"\",\n \"current_accrued_expenses\": \"\",\n \"interest_payable\": \"\",\n \"payables\": \"\",\n \"other_payable\": \"\",\n \"due_to_related_parties_current\": \"\",\n \"dividends_payable\": \"\",\n \"total_tax_payable\": \"\",\n \"income_tax_payable\": \"\"\n },\n \"pension_and_other_post_retirement_benefit_plans_current\": \"\",\n \"employee_benefits\": \"\",\n \"current_deferred_liabilities\": \"\",\n \"current_deferred_revenue\": \"\",\n \"current_deferred_taxes_liabilities\": \"\",\n \"other_current_liabilities\": \"\",\n \"liabilities_held_for_sale_non_current\": \"\"\n },\n \"non_current_liabilities\": {\n \"total_non_current_liabilities_net_minority_interest\": \"\",\n \"long_term_debt_and_capital_lease_obligation\": {\n \"total_long_term_debt_and_capital_lease_obligation\": \"\",\n \"long_term_debt\": \"\",\n \"long_term_capital_lease_obligation\": \"\"\n },\n \"long_term_provisions\": \"\",\n \"non_current_pension_and_other_postretirement_benefit_plans\": \"\",\n \"non_current_accrued_expenses\": \"\",\n \"due_to_related_parties_non_current\": \"\",\n \"trade_and_other_payables_non_current\": \"\",\n \"non_current_deferred_liabilities\": \"\",\n \"non_current_deferred_revenue\": \"\",\n \"non_current_deferred_taxes_liabilities\": \"\",\n \"other_non_current_liabilities\": \"\",\n \"preferred_securities_outside_stock_equity\": \"\",\n \"derivative_product_liabilities\": \"\",\n \"capital_lease_obligations\": \"\",\n \"restricted_common_stock\": \"\"\n },\n \"equity\": {\n \"total_equity_gross_minority_interest\": \"\",\n \"stockholders_equity\": \"\",\n \"common_stock_equity\": \"\",\n \"preferred_stock_equity\": \"\",\n \"other_equity_interest\": \"\",\n \"minority_interest\": \"\",\n \"total_capitalization\": \"\",\n \"net_tangible_assets\": \"\",\n \"tangible_book_value\": \"\",\n \"invested_capital\": \"\",\n \"working_capital\": \"\",\n \"capital_stock\": {\n \"common_stock\": \"\",\n \"preferred_stock\": \"\",\n \"total_partnership_capital\": \"\",\n \"general_partnership_capital\": \"\",\n \"limited_partnership_capital\": \"\",\n \"capital_stock\": \"\",\n \"other_capital_stock\": \"\",\n \"additional_paid_in_capital\": \"\",\n \"retained_earnings\": \"\",\n \"treasury_stock\": \"\",\n \"treasury_shares_number\": \"\",\n \"ordinary_shares_number\": \"\",\n \"preferred_shares_number\": \"\",\n \"share_issued\": \"\"\n },\n \"equity_adjustments\": {\n \"gains_losses_not_affecting_retained_earnings\": \"\",\n \"other_equity_adjustments\": \"\",\n \"fixed_assets_revaluation_reserve\": \"\",\n \"foreign_currency_translation_adjustments\": \"\",\n \"minimum_pension_liabilities\": \"\",\n \"unrealized_gain_loss\": \"\"\n },\n \"net_debt\": \"\",\n \"total_debt\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-127c8f84-7e19-4565-a70f-6d4f7b6e2abf" }, { "id": "a8d38b61-28c2-4cea-86b3-356f6f632f65", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8d38b61-28c2-4cea-86b3-356f6f632f65" }, { "id": "97e0aeaa-be78-443b-9751-4d098e1f3942", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-97e0aeaa-be78-443b-9751-4d098e1f3942" }, { "id": "a0b9c855-5ddb-4efa-8dc3-98587bd40810", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a0b9c855-5ddb-4efa-8dc3-98587bd40810" }, { "id": "aab46568-54ee-4323-8e0e-e7eb1a3cb8dc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aab46568-54ee-4323-8e0e-e7eb1a3cb8dc" }, { "id": "d7db27a2-9b59-4f12-9bfd-fc491630c250", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d7db27a2-9b59-4f12-9bfd-fc491630c250" }, { "id": "4433e9df-fb77-48d5-9608-49180fe25f72", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4433e9df-fb77-48d5-9608-49180fe25f72" }, { "id": "d1ef713d-66a4-4123-8d4c-4dec7e44210c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data.", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date. Returns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date. Returns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d1ef713d-66a4-4123-8d4c-4dec7e44210c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c8fa9aa-94e4-4407-a1e8-b44d653a691b" } ], "id": "e775feb3-18ed-4a27-b472-8d8306e9309c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e775feb3-18ed-4a27-b472-8d8306e9309c" }, { "name": "Balance sheet", "id": "06cb0736-7b4d-4470-8369-354852f393e5", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The balance sheet endpoint provides a detailed financial statement for a company, outlining its assets, liabilities, and shareholders' equity. This endpoint returns structured data that includes current and non-current assets, total liabilities, and equity figures, enabling users to assess a company's financial health and stability." }, "response": [ { "id": "4ad9ed82-d1cd-47ba-a626-83402de5f6ee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"balance_sheet\": [\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"assets\": {\n \"current_assets\": {\n \"cash\": \"\",\n \"cash_equivalents\": \"\",\n \"cash_and_cash_equivalents\": \"\",\n \"other_short_term_investments\": \"\",\n \"accounts_receivable\": \"\",\n \"other_receivables\": \"\",\n \"inventory\": \"\",\n \"prepaid_assets\": \"\",\n \"restricted_cash\": \"\",\n \"assets_held_for_sale\": \"\",\n \"hedging_assets\": \"\",\n \"other_current_assets\": \"\",\n \"total_current_assets\": \"\"\n },\n \"non_current_assets\": {\n \"properties\": \"\",\n \"land_and_improvements\": \"\",\n \"machinery_furniture_equipment\": \"\",\n \"construction_in_progress\": \"\",\n \"leases\": \"\",\n \"accumulated_depreciation\": \"\",\n \"goodwill\": \"\",\n \"investment_properties\": \"\",\n \"financial_assets\": \"\",\n \"intangible_assets\": \"\",\n \"investments_and_advances\": \"\",\n \"other_non_current_assets\": \"\",\n \"total_non_current_assets\": \"\"\n },\n \"total_assets\": \"\"\n },\n \"liabilities\": {\n \"current_liabilities\": {\n \"accounts_payable\": \"\",\n \"accrued_expenses\": \"\",\n \"short_term_debt\": \"\",\n \"deferred_revenue\": \"\",\n \"tax_payable\": \"\",\n \"pensions\": \"\",\n \"other_current_liabilities\": \"\",\n \"total_current_liabilities\": \"\"\n },\n \"non_current_liabilities\": {\n \"long_term_provisions\": \"\",\n \"long_term_debt\": \"\",\n \"provision_for_risks_and_charges\": \"\",\n \"deferred_liabilities\": \"\",\n \"derivative_product_liabilities\": \"\",\n \"other_non_current_liabilities\": \"\",\n \"total_non_current_liabilities\": \"\"\n },\n \"total_liabilities\": \"\"\n },\n \"shareholders_equity\": {\n \"common_stock\": \"\",\n \"retained_earnings\": \"\",\n \"other_shareholders_equity\": \"\",\n \"total_shareholders_equity\": \"\",\n \"additional_paid_in_capital\": \"\",\n \"treasury_stock\": \"\",\n \"minority_interest\": \"\"\n }\n },\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"assets\": {\n \"current_assets\": {\n \"cash\": \"\",\n \"cash_equivalents\": \"\",\n \"cash_and_cash_equivalents\": \"\",\n \"other_short_term_investments\": \"\",\n \"accounts_receivable\": \"\",\n \"other_receivables\": \"\",\n \"inventory\": \"\",\n \"prepaid_assets\": \"\",\n \"restricted_cash\": \"\",\n \"assets_held_for_sale\": \"\",\n \"hedging_assets\": \"\",\n \"other_current_assets\": \"\",\n \"total_current_assets\": \"\"\n },\n \"non_current_assets\": {\n \"properties\": \"\",\n \"land_and_improvements\": \"\",\n \"machinery_furniture_equipment\": \"\",\n \"construction_in_progress\": \"\",\n \"leases\": \"\",\n \"accumulated_depreciation\": \"\",\n \"goodwill\": \"\",\n \"investment_properties\": \"\",\n \"financial_assets\": \"\",\n \"intangible_assets\": \"\",\n \"investments_and_advances\": \"\",\n \"other_non_current_assets\": \"\",\n \"total_non_current_assets\": \"\"\n },\n \"total_assets\": \"\"\n },\n \"liabilities\": {\n \"current_liabilities\": {\n \"accounts_payable\": \"\",\n \"accrued_expenses\": \"\",\n \"short_term_debt\": \"\",\n \"deferred_revenue\": \"\",\n \"tax_payable\": \"\",\n \"pensions\": \"\",\n \"other_current_liabilities\": \"\",\n \"total_current_liabilities\": \"\"\n },\n \"non_current_liabilities\": {\n \"long_term_provisions\": \"\",\n \"long_term_debt\": \"\",\n \"provision_for_risks_and_charges\": \"\",\n \"deferred_liabilities\": \"\",\n \"derivative_product_liabilities\": \"\",\n \"other_non_current_liabilities\": \"\",\n \"total_non_current_liabilities\": \"\"\n },\n \"total_liabilities\": \"\"\n },\n \"shareholders_equity\": {\n \"common_stock\": \"\",\n \"retained_earnings\": \"\",\n \"other_shareholders_equity\": \"\",\n \"total_shareholders_equity\": \"\",\n \"additional_paid_in_capital\": \"\",\n \"treasury_stock\": \"\",\n \"minority_interest\": \"\"\n }\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"period\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ad9ed82-d1cd-47ba-a626-83402de5f6ee" }, { "id": "06e55846-be4f-4970-b0df-83696b4ab9bf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-06e55846-be4f-4970-b0df-83696b4ab9bf" }, { "id": "3c172fbf-6c99-462b-aa22-fb6d8a322957", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3c172fbf-6c99-462b-aa22-fb6d8a322957" }, { "id": "e1da6848-a30d-4fd3-a5ca-7f8fed54b4fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e1da6848-a30d-4fd3-a5ca-7f8fed54b4fc" }, { "id": "0d8a28a8-2f9b-40dc-bd37-129944f0c940", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0d8a28a8-2f9b-40dc-bd37-129944f0c940" }, { "id": "5b33ff0f-b387-429e-ad38-2b5beacf670e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5b33ff0f-b387-429e-ad38-2b5beacf670e" }, { "id": "95636c59-26f8-4c6f-ad00-67f2eca90cc6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-95636c59-26f8-4c6f-ad00-67f2eca90cc6" }, { "id": "5f9969b8-2900-4609-a875-f93611a8fecb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/balance_sheet?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "balance_sheet" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the balance sheet data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or after this date. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering items by fiscal date.\nReturns income statements with fiscal dates on or before this date. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5f9969b8-2900-4609-a875-f93611a8fecb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-06cb0736-7b4d-4470-8369-354852f393e5" } ], "id": "491db835-22d3-4096-851c-eba3bcc28a6b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-491db835-22d3-4096-851c-eba3bcc28a6b" }, { "name": "batch", "item": [ { "name": "Batches", "id": "cdeacb81-3b47-43bb-ab09-a7048012645c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] }, "description": "The batch request endpoint allows users to request data for multiple financial instruments, time intervals, and data types simultaneously. This endpoint is useful for efficiently gathering diverse financial data in a single operation, reducing the need for multiple individual requests. Errors in specific requests do not affect the processing of others, and each error is reported separately, enabling easy troubleshooting.\n\n### Request body\nOnly JSON `POST` requests are supported.\nThe request content structure consists of key-value items. The key is a unique request ID. The value is requested url.\n\n### Response\nThe response contains key-value data. The key is a unique request ID. The value is returned data.\n\n### API credits\n
    \n
  • The number of concurrent requests is limited by your subscription plan.
  • \n
  • Credits are consumed per requested endpoint, with the total usage equal to the sum of individual requests in the batch.
  • \n
  • If the requested data exceeds your available credits, only partial data will be returned asynchronously until your quota is exhausted.
  • \n
  • If one or more requests in the batch contain errors (e.g., invalid symbols or unsupported intervals), it will not affect the successful processing of other requests. Errors are reported individually within the response, allowing you to identify and correct specific issues without impacting the entire batch.
  • \n
" }, "response": [ { "id": "41744ba3-0c94-4523-a6df-0ae83a7a0d42", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"status\": \"\",\n \"data\": {\n \"Ut_c1\": {},\n \"cupidatat_e\": {}\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-41744ba3-0c94-4523-a6df-0ae83a7a0d42" }, { "id": "48747f9e-c9b1-468d-a7d6-241c656123b5", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-48747f9e-c9b1-468d-a7d6-241c656123b5" }, { "id": "8e7ca2b8-88fe-400c-aa34-619dbd543255", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e7ca2b8-88fe-400c-aa34-619dbd543255" }, { "id": "e54b4a9e-d326-44cc-aa5a-eeccc56bb83b", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e54b4a9e-d326-44cc-aa5a-eeccc56bb83b" }, { "id": "7de1c5cd-4101-410f-a874-bb17a7e03520", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7de1c5cd-4101-410f-a874-bb17a7e03520" }, { "id": "b15e5dbe-4f63-485f-9383-6c6dd0bff498", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b15e5dbe-4f63-485f-9383-6c6dd0bff498" }, { "id": "f2f437e3-38d0-430c-b64f-15e25042ef3d", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f2f437e3-38d0-430c-b64f-15e25042ef3d" }, { "id": "0f034b16-8a93-458a-ba3c-b6563fff7d54", "name": "New Response", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"do2ba\": {\n \"url\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/batch", "host": [ "{{baseUrl}}" ], "path": [ "batch" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0f034b16-8a93-458a-ba3c-b6563fff7d54" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cdeacb81-3b47-43bb-ab09-a7048012645c" } ], "id": "13cb4151-b1e7-4606-a121-c5f11ffae695", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-13cb4151-b1e7-4606-a121-c5f11ffae695" }, { "name": "bbands", "item": [ { "name": "Bollinger bands", "id": "4b94d32d-f2cc-44c7-a32e-70c9c008e677", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Bollinger Bands (BBANDS) endpoint calculates and returns three key data points: an upper band, a lower band, and a simple moving average (SMA) for a specified financial instrument. These bands are used to assess market volatility by showing how far prices deviate from the SMA. This information helps users identify potential price reversals and determine whether an asset is overbought or oversold." }, "response": [ { "id": "6e089055-093e-43a5-9baf-30dc1e2a0450", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"ma_type\": \"\",\n \"name\": \"\",\n \"sd\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"lower_band\": \"\",\n \"middle_band\": \"\",\n \"upper_band\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"lower_band\": \"\",\n \"middle_band\": \"\",\n \"upper_band\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e089055-093e-43a5-9baf-30dc1e2a0450" }, { "id": "7b92eea2-5ff8-41bd-bced-fbccdeb70906", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b92eea2-5ff8-41bd-bced-fbccdeb70906" }, { "id": "1fc2ceb6-cedb-4b1d-ab92-61ed43664e1f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1fc2ceb6-cedb-4b1d-ab92-61ed43664e1f" }, { "id": "cdac925a-d632-445c-a828-2e21d9097da3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cdac925a-d632-445c-a828-2e21d9097da3" }, { "id": "2876c29d-0c23-4a5d-86d9-053c20e2bacd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2876c29d-0c23-4a5d-86d9-053c20e2bacd" }, { "id": "fec6eced-3a46-42db-9e13-424d10db4d7d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fec6eced-3a46-42db-9e13-424d10db4d7d" }, { "id": "8fce3e3a-c83d-40ac-b619-3c0ab795400f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8fce3e3a-c83d-40ac-b619-3c0ab795400f" }, { "id": "582f213a-82a4-4fa6-8919-83e7dc6b8378", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bbands?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=20&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bbands" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Number of standard deviations. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-582f213a-82a4-4fa6-8919-83e7dc6b8378" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b94d32d-f2cc-44c7-a32e-70c9c008e677" } ], "id": "67c667b8-d309-4d0a-8232-fafb25a60128", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-67c667b8-d309-4d0a-8232-fafb25a60128" }, { "name": "beta", "item": [ { "name": "Beta indicator", "id": "231071fb-4e11-465a-8daa-035edf9c9911", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Beta Indicator endpoint provides data on a security's sensitivity to market movements by comparing its price changes to a benchmark index. It returns the beta value, which quantifies the systematic risk of the security relative to the market. This information is useful for evaluating how much a security's price is expected to move in relation to market changes." }, "response": [ { "id": "49ee56dc-d602-49ac-9b38-f96626b6acc7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"beta\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"beta\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-49ee56dc-d602-49ac-9b38-f96626b6acc7" }, { "id": "e4160a48-292c-47be-b772-b5d6117b48e3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e4160a48-292c-47be-b772-b5d6117b48e3" }, { "id": "053f6e23-8ab2-4a6d-91ca-c7f869b30b69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-053f6e23-8ab2-4a6d-91ca-c7f869b30b69" }, { "id": "b3d88787-6b68-45d1-96d0-736101e6b7cd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b3d88787-6b68-45d1-96d0-736101e6b7cd" }, { "id": "58e425f9-b59e-4926-8bd9-901f54c21a3a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58e425f9-b59e-4926-8bd9-901f54c21a3a" }, { "id": "24aba028-2fbc-4467-af73-b3f514c5b52a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-24aba028-2fbc-4467-af73-b3f514c5b52a" }, { "id": "1c528de6-9585-408e-abe6-3be469d8e45b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c528de6-9585-408e-abe6-3be469d8e45b" }, { "id": "47327a55-6d53-421f-8e59-885335854eb6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/beta?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "beta" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-47327a55-6d53-421f-8e59-885335854eb6" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-231071fb-4e11-465a-8daa-035edf9c9911" } ], "id": "d4f6bf84-1ede-4296-93d4-61d6ffa8df92", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d4f6bf84-1ede-4296-93d4-61d6ffa8df92" }, { "name": "bonds", "item": [ { "name": "Fixed income", "id": "5096668e-f05d-4073-8d5e-999b5890d9ff", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] }, "description": "The fixed income endpoint provides a daily updated list of available bonds. It returns an array containing detailed information about each bond, including identifiers, names, and other relevant attributes." }, "response": [ { "id": "d2f22d1a-3d9a-4fb4-8ba9-3278ef586df0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"count\": \"\",\n \"list\": [\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d2f22d1a-3d9a-4fb4-8ba9-3278ef586df0" }, { "id": "5fffa37b-6240-4e06-9f0a-3e4e8c8fc12a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5fffa37b-6240-4e06-9f0a-3e4e8c8fc12a" }, { "id": "11429b5d-1306-479a-a54b-c4442a4885ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-11429b5d-1306-479a-a54b-c4442a4885ce" }, { "id": "302b893e-b46a-4906-9656-5af346ac90e4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-302b893e-b46a-4906-9656-5af346ac90e4" }, { "id": "8ebde3ab-7797-48f3-af02-c0eb95aeca21", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8ebde3ab-7797-48f3-af02-c0eb95aeca21" }, { "id": "f26f865d-1a09-4717-a484-c041783d2b78", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f26f865d-1a09-4717-a484-c041783d2b78" }, { "id": "5f90300e-bd15-4b47-9a24-5e581f27fdd2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5f90300e-bd15-4b47-9a24-5e581f27fdd2" }, { "id": "77d64582-5d71-4b21-95a2-7db72e5b2d69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bonds?symbol=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "bonds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-77d64582-5d71-4b21-95a2-7db72e5b2d69" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5096668e-f05d-4073-8d5e-999b5890d9ff" } ], "id": "2a17fd0e-9432-401e-bba2-31b752d9a4e3", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2a17fd0e-9432-401e-bba2-31b752d9a4e3" }, { "name": "bop", "item": [ { "name": "Balance of power", "id": "a8d3ce63-b488-4dcf-946e-92adb5fb10cd", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Balance of Power (BOP) endpoint provides data on the buying and selling pressure of a security by analyzing its open, high, low, and close prices. It returns numerical values that help users detect shifts in market sentiment and potential price movements." }, "response": [ { "id": "09b207ec-84b2-4054-84df-f362e16d7258", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"bop\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"bop\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-09b207ec-84b2-4054-84df-f362e16d7258" }, { "id": "66c1accc-44b4-4e3a-9bac-0158cc9cfdfa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-66c1accc-44b4-4e3a-9bac-0158cc9cfdfa" }, { "id": "c33d95db-a94a-43bc-a66e-ee5a9729a72c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c33d95db-a94a-43bc-a66e-ee5a9729a72c" }, { "id": "a95dee15-6dfc-4999-9c24-01cbcc5c8a27", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a95dee15-6dfc-4999-9c24-01cbcc5c8a27" }, { "id": "834f4112-4f5f-4564-874f-0c2f87cfbcb5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-834f4112-4f5f-4564-874f-0c2f87cfbcb5" }, { "id": "e129da5f-093d-44db-9319-8f3dfdbbbbde", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e129da5f-093d-44db-9319-8f3dfdbbbbde" }, { "id": "c571f9dc-fad3-48dd-b847-9e59934452ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c571f9dc-fad3-48dd-b847-9e59934452ef" }, { "id": "716aeca7-a07a-4382-b1d5-bf4039e23dfd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/bop?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "bop" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-716aeca7-a07a-4382-b1d5-bf4039e23dfd" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8d3ce63-b488-4dcf-946e-92adb5fb10cd" } ], "id": "7b83f512-3aeb-4cf3-abfe-d395222c5222", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-7b83f512-3aeb-4cf3-abfe-d395222c5222" }, { "name": "cash_flow", "item": [ { "name": "consolidated", "item": [ { "name": "Cash flow consolidated", "id": "c7826c25-e00d-4c83-84bb-f533bc9be33e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The cash flow consolidated endpoint provides raw data on a company's consolidated cash flow, including the net cash and cash equivalents moving in and out of the business. It returns information on operating, investing, and financing activities, helping users track liquidity and financial health over a specified period." }, "response": [ { "id": "c8011476-419d-4ccb-82d2-8e77605a2491", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"cash_flow\": [\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"cash_flow_from_operating_activities\": {\n \"net_income_from_continuing_operations\": \"\",\n \"operating_cash_flow\": \"\",\n \"cash_flow_from_continuing_operating_activities\": \"\",\n \"cash_from_discontinued_operating_activities\": \"\",\n \"cash_flow_from_discontinued_operation\": \"\",\n \"free_cash_flow\": \"\",\n \"cash_flows_from_used_in_operating_activities_direct\": \"\",\n \"taxes_refund_paid\": \"\",\n \"taxes_refund_paid_direct\": \"\",\n \"interest_received\": \"\",\n \"interest_received_direct\": \"\",\n \"interest_paid\": \"\",\n \"interest_paid_direct\": \"\",\n \"dividend_received\": \"\",\n \"dividend_received_direct\": \"\",\n \"dividend_paid\": \"\",\n \"dividend_paid_direct\": \"\",\n \"change_in_working_capital\": \"\",\n \"change_in_other_working_capital\": \"\",\n \"change_in_receivables\": \"\",\n \"changes_in_account_receivables\": \"\",\n \"change_in_payables_and_accrued_expense\": \"\",\n \"change_in_accrued_expense\": \"\",\n \"change_in_payable\": \"\",\n \"change_in_dividend_payable\": \"\",\n \"change_in_account_payable\": \"\",\n \"change_in_tax_payable\": \"\",\n \"change_in_income_tax_payable\": \"\",\n \"change_in_interest_payable\": \"\",\n \"change_in_other_current_liabilities\": \"\",\n \"change_in_other_current_assets\": \"\",\n \"change_in_inventory\": \"\",\n \"change_in_prepaid_assets\": \"\",\n \"other_non_cash_items\": \"\",\n \"excess_tax_benefit_from_stock_based_compensation\": \"\",\n \"stock_based_compensation\": \"\",\n \"unrealized_gain_loss_on_investment_securities\": \"\",\n \"provision_and_write_off_of_assets\": \"\",\n \"asset_impairment_charge\": \"\",\n \"amortization_of_securities\": \"\",\n \"deferred_tax\": \"\",\n \"deferred_income_tax\": \"\",\n \"depreciation_amortization_depletion\": \"\",\n \"depletion\": \"\",\n \"depreciation_and_amortization\": \"\",\n \"amortization_cash_flow\": \"\",\n \"amortization_of_intangibles\": \"\",\n \"depreciation\": \"\",\n \"operating_gains_losses\": \"\",\n \"pension_and_employee_benefit_expense\": \"\",\n \"earnings_losses_from_equity_investments\": \"\",\n \"gain_loss_on_investment_securities\": \"\",\n \"net_foreign_currency_exchange_gain_loss\": \"\",\n \"gain_loss_on_sale_of_ppe\": \"\",\n \"gain_loss_on_sale_of_business\": \"\"\n },\n \"cash_flow_from_investing_activities\": {\n \"investing_cash_flow\": \"\",\n \"cash_flow_from_continuing_investing_activities\": \"\",\n \"cash_from_discontinued_investing_activities\": \"\",\n \"net_other_investing_changes\": \"\",\n \"interest_received_cfi\": \"\",\n \"dividends_received_cfi\": \"\",\n \"net_investment_purchase_and_sale\": \"\",\n \"sale_of_investment\": \"\",\n \"purchase_of_investment\": \"\",\n \"net_investment_properties_purchase_and_sale\": \"\",\n \"sale_of_investment_properties\": \"\",\n \"purchase_of_investment_properties\": \"\",\n \"net_business_purchase_and_sale\": \"\",\n \"sale_of_business\": \"\",\n \"purchase_of_business\": \"\",\n \"net_intangibles_purchase_and_sale\": \"\",\n \"sale_of_intangibles\": \"\",\n \"purchase_of_intangibles\": \"\",\n \"net_ppe_purchase_and_sale\": \"\",\n \"sale_of_ppe\": \"\",\n \"purchase_of_ppe\": \"\",\n \"capital_expenditure_reported\": \"\",\n \"capital_expenditure\": \"\"\n },\n \"cash_flow_from_financing_activities\": {\n \"financing_cash_flow\": \"\",\n \"cash_flow_from_continuing_financing_activities\": \"\",\n \"cash_from_discontinued_financing_activities\": \"\",\n \"net_other_financing_charges\": \"\",\n \"interest_paid_cff\": \"\",\n \"proceeds_from_stock_option_exercised\": \"\",\n \"cash_dividends_paid\": \"\",\n \"preferred_stock_dividend_paid\": \"\",\n \"common_stock_dividend_paid\": \"\",\n \"net_preferred_stock_issuance\": \"\",\n \"preferred_stock_payments\": \"\",\n \"preferred_stock_issuance\": \"\",\n \"net_common_stock_issuance\": \"\",\n \"common_stock_payments\": \"\",\n \"common_stock_issuance\": \"\",\n \"repurchase_of_capital_stock\": \"\",\n \"net_issuance_payments_of_debt\": \"\",\n \"net_short_term_debt_issuance\": \"\",\n \"short_term_debt_payments\": \"\",\n \"short_term_debt_issuance\": \"\",\n \"net_long_term_debt_issuance\": \"\",\n \"long_term_debt_payments\": \"\",\n \"long_term_debt_issuance\": \"\",\n \"issuance_of_debt\": \"\",\n \"repayment_of_debt\": \"\",\n \"issuance_of_capital_stock\": \"\"\n },\n \"supplemental_data\": {\n \"interest_paid_supplemental_data\": \"\",\n \"income_tax_paid_supplemental_data\": \"\"\n },\n \"foreign_and_domestic_sales\": {\n \"foreign_sales\": \"\",\n \"domestic_sales\": \"\",\n \"adjusted_geography_segment_data\": \"\"\n },\n \"cash_position\": {\n \"beginning_cash_position\": \"\",\n \"end_cash_position\": \"\",\n \"changes_in_cash\": \"\",\n \"other_cash_adjustment_outside_change_in_cash\": \"\",\n \"other_cash_adjustment_inside_change_in_cash\": \"\",\n \"effect_of_exchange_rate_changes\": \"\"\n },\n \"direct_method_cash_flow\": {\n \"classes_of_cash_receipts_from_operating_activities\": \"\",\n \"other_cash_receipts_from_operating_activities\": \"\",\n \"receipts_from_government_grants\": \"\",\n \"receipts_from_customers\": \"\",\n \"classes_of_cash_payments\": \"\",\n \"other_cash_payments_from_operating_activities\": \"\",\n \"payments_on_behalf_of_employees\": \"\",\n \"payments_to_suppliers_for_goods_and_services\": \"\"\n }\n },\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"cash_flow_from_operating_activities\": {\n \"net_income_from_continuing_operations\": \"\",\n \"operating_cash_flow\": \"\",\n \"cash_flow_from_continuing_operating_activities\": \"\",\n \"cash_from_discontinued_operating_activities\": \"\",\n \"cash_flow_from_discontinued_operation\": \"\",\n \"free_cash_flow\": \"\",\n \"cash_flows_from_used_in_operating_activities_direct\": \"\",\n \"taxes_refund_paid\": \"\",\n \"taxes_refund_paid_direct\": \"\",\n \"interest_received\": \"\",\n \"interest_received_direct\": \"\",\n \"interest_paid\": \"\",\n \"interest_paid_direct\": \"\",\n \"dividend_received\": \"\",\n \"dividend_received_direct\": \"\",\n \"dividend_paid\": \"\",\n \"dividend_paid_direct\": \"\",\n \"change_in_working_capital\": \"\",\n \"change_in_other_working_capital\": \"\",\n \"change_in_receivables\": \"\",\n \"changes_in_account_receivables\": \"\",\n \"change_in_payables_and_accrued_expense\": \"\",\n \"change_in_accrued_expense\": \"\",\n \"change_in_payable\": \"\",\n \"change_in_dividend_payable\": \"\",\n \"change_in_account_payable\": \"\",\n \"change_in_tax_payable\": \"\",\n \"change_in_income_tax_payable\": \"\",\n \"change_in_interest_payable\": \"\",\n \"change_in_other_current_liabilities\": \"\",\n \"change_in_other_current_assets\": \"\",\n \"change_in_inventory\": \"\",\n \"change_in_prepaid_assets\": \"\",\n \"other_non_cash_items\": \"\",\n \"excess_tax_benefit_from_stock_based_compensation\": \"\",\n \"stock_based_compensation\": \"\",\n \"unrealized_gain_loss_on_investment_securities\": \"\",\n \"provision_and_write_off_of_assets\": \"\",\n \"asset_impairment_charge\": \"\",\n \"amortization_of_securities\": \"\",\n \"deferred_tax\": \"\",\n \"deferred_income_tax\": \"\",\n \"depreciation_amortization_depletion\": \"\",\n \"depletion\": \"\",\n \"depreciation_and_amortization\": \"\",\n \"amortization_cash_flow\": \"\",\n \"amortization_of_intangibles\": \"\",\n \"depreciation\": \"\",\n \"operating_gains_losses\": \"\",\n \"pension_and_employee_benefit_expense\": \"\",\n \"earnings_losses_from_equity_investments\": \"\",\n \"gain_loss_on_investment_securities\": \"\",\n \"net_foreign_currency_exchange_gain_loss\": \"\",\n \"gain_loss_on_sale_of_ppe\": \"\",\n \"gain_loss_on_sale_of_business\": \"\"\n },\n \"cash_flow_from_investing_activities\": {\n \"investing_cash_flow\": \"\",\n \"cash_flow_from_continuing_investing_activities\": \"\",\n \"cash_from_discontinued_investing_activities\": \"\",\n \"net_other_investing_changes\": \"\",\n \"interest_received_cfi\": \"\",\n \"dividends_received_cfi\": \"\",\n \"net_investment_purchase_and_sale\": \"\",\n \"sale_of_investment\": \"\",\n \"purchase_of_investment\": \"\",\n \"net_investment_properties_purchase_and_sale\": \"\",\n \"sale_of_investment_properties\": \"\",\n \"purchase_of_investment_properties\": \"\",\n \"net_business_purchase_and_sale\": \"\",\n \"sale_of_business\": \"\",\n \"purchase_of_business\": \"\",\n \"net_intangibles_purchase_and_sale\": \"\",\n \"sale_of_intangibles\": \"\",\n \"purchase_of_intangibles\": \"\",\n \"net_ppe_purchase_and_sale\": \"\",\n \"sale_of_ppe\": \"\",\n \"purchase_of_ppe\": \"\",\n \"capital_expenditure_reported\": \"\",\n \"capital_expenditure\": \"\"\n },\n \"cash_flow_from_financing_activities\": {\n \"financing_cash_flow\": \"\",\n \"cash_flow_from_continuing_financing_activities\": \"\",\n \"cash_from_discontinued_financing_activities\": \"\",\n \"net_other_financing_charges\": \"\",\n \"interest_paid_cff\": \"\",\n \"proceeds_from_stock_option_exercised\": \"\",\n \"cash_dividends_paid\": \"\",\n \"preferred_stock_dividend_paid\": \"\",\n \"common_stock_dividend_paid\": \"\",\n \"net_preferred_stock_issuance\": \"\",\n \"preferred_stock_payments\": \"\",\n \"preferred_stock_issuance\": \"\",\n \"net_common_stock_issuance\": \"\",\n \"common_stock_payments\": \"\",\n \"common_stock_issuance\": \"\",\n \"repurchase_of_capital_stock\": \"\",\n \"net_issuance_payments_of_debt\": \"\",\n \"net_short_term_debt_issuance\": \"\",\n \"short_term_debt_payments\": \"\",\n \"short_term_debt_issuance\": \"\",\n \"net_long_term_debt_issuance\": \"\",\n \"long_term_debt_payments\": \"\",\n \"long_term_debt_issuance\": \"\",\n \"issuance_of_debt\": \"\",\n \"repayment_of_debt\": \"\",\n \"issuance_of_capital_stock\": \"\"\n },\n \"supplemental_data\": {\n \"interest_paid_supplemental_data\": \"\",\n \"income_tax_paid_supplemental_data\": \"\"\n },\n \"foreign_and_domestic_sales\": {\n \"foreign_sales\": \"\",\n \"domestic_sales\": \"\",\n \"adjusted_geography_segment_data\": \"\"\n },\n \"cash_position\": {\n \"beginning_cash_position\": \"\",\n \"end_cash_position\": \"\",\n \"changes_in_cash\": \"\",\n \"other_cash_adjustment_outside_change_in_cash\": \"\",\n \"other_cash_adjustment_inside_change_in_cash\": \"\",\n \"effect_of_exchange_rate_changes\": \"\"\n },\n \"direct_method_cash_flow\": {\n \"classes_of_cash_receipts_from_operating_activities\": \"\",\n \"other_cash_receipts_from_operating_activities\": \"\",\n \"receipts_from_government_grants\": \"\",\n \"receipts_from_customers\": \"\",\n \"classes_of_cash_payments\": \"\",\n \"other_cash_payments_from_operating_activities\": \"\",\n \"payments_on_behalf_of_employees\": \"\",\n \"payments_to_suppliers_for_goods_and_services\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8011476-419d-4ccb-82d2-8e77605a2491" }, { "id": "d488750a-8061-46c0-914f-fed3be327303", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d488750a-8061-46c0-914f-fed3be327303" }, { "id": "69bc4927-4e8d-4a11-bcc1-f12e13b1cd50", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-69bc4927-4e8d-4a11-bcc1-f12e13b1cd50" }, { "id": "93672a2d-676d-4e7d-9934-6159cf7126b8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93672a2d-676d-4e7d-9934-6159cf7126b8" }, { "id": "7e91c27c-08dc-40b6-be8e-207dbc06319f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7e91c27c-08dc-40b6-be8e-207dbc06319f" }, { "id": "09b93d56-05b5-4be7-b28f-1b254be5e5cd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-09b93d56-05b5-4be7-b28f-1b254be5e5cd" }, { "id": "5e8f83a1-042c-425a-891a-238aad30f065", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5e8f83a1-042c-425a-891a-238aad30f065" }, { "id": "05676da5-b570-4f18-8f30-794718e4862e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements. Only cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements. Only cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-05676da5-b570-4f18-8f30-794718e4862e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c7826c25-e00d-4c83-84bb-f533bc9be33e" } ], "id": "fa5567c3-8f27-4c36-823a-c461a080fbdd", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fa5567c3-8f27-4c36-823a-c461a080fbdd" }, { "name": "Cash flow", "id": "2e51e739-17e0-46d9-b18d-d8b139c3949a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The cash flow endpoint provides detailed information on a company's cash flow activities, including the net cash and cash equivalents moving in and out of the business. This data includes operating, investing, and financing cash flows, offering a comprehensive view of the company's liquidity and financial health." }, "response": [ { "id": "7516a3a2-def9-412e-8a6d-e846a07ef139", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"cash_flow\": [\n {\n \"fiscal_date\": \"\",\n \"quarter\": \"\",\n \"year\": \"\",\n \"operating_activities\": {\n \"net_income\": \"\",\n \"depreciation\": \"\",\n \"deferred_taxes\": \"\",\n \"stock_based_compensation\": \"\",\n \"other_non_cash_items\": \"\",\n \"accounts_receivable\": \"\",\n \"accounts_payable\": \"\",\n \"other_assets_liabilities\": \"\",\n \"operating_cash_flow\": \"\"\n },\n \"investing_activities\": {\n \"capital_expenditures\": \"\",\n \"net_intangibles\": \"\",\n \"net_acquisitions\": \"\",\n \"purchase_of_investments\": \"\",\n \"sale_of_investments\": \"\",\n \"other_investing_activity\": \"\",\n \"investing_cash_flow\": \"\"\n },\n \"financing_activities\": {\n \"long_term_debt_issuance\": \"\",\n \"long_term_debt_payments\": \"\",\n \"short_term_debt_issuance\": \"\",\n \"common_stock_issuance\": \"\",\n \"common_stock_repurchase\": \"\",\n \"common_dividends\": \"\",\n \"other_financing_charges\": \"\",\n \"financing_cash_flow\": \"\"\n },\n \"end_cash_position\": \"\",\n \"income_tax_paid\": \"\",\n \"interest_paid\": \"\",\n \"free_cash_flow\": \"\"\n },\n {\n \"fiscal_date\": \"\",\n \"quarter\": \"\",\n \"year\": \"\",\n \"operating_activities\": {\n \"net_income\": \"\",\n \"depreciation\": \"\",\n \"deferred_taxes\": \"\",\n \"stock_based_compensation\": \"\",\n \"other_non_cash_items\": \"\",\n \"accounts_receivable\": \"\",\n \"accounts_payable\": \"\",\n \"other_assets_liabilities\": \"\",\n \"operating_cash_flow\": \"\"\n },\n \"investing_activities\": {\n \"capital_expenditures\": \"\",\n \"net_intangibles\": \"\",\n \"net_acquisitions\": \"\",\n \"purchase_of_investments\": \"\",\n \"sale_of_investments\": \"\",\n \"other_investing_activity\": \"\",\n \"investing_cash_flow\": \"\"\n },\n \"financing_activities\": {\n \"long_term_debt_issuance\": \"\",\n \"long_term_debt_payments\": \"\",\n \"short_term_debt_issuance\": \"\",\n \"common_stock_issuance\": \"\",\n \"common_stock_repurchase\": \"\",\n \"common_dividends\": \"\",\n \"other_financing_charges\": \"\",\n \"financing_cash_flow\": \"\"\n },\n \"end_cash_position\": \"\",\n \"income_tax_paid\": \"\",\n \"interest_paid\": \"\",\n \"free_cash_flow\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"period\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7516a3a2-def9-412e-8a6d-e846a07ef139" }, { "id": "3defc69d-c5c4-4660-a68d-6fac8434baa3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3defc69d-c5c4-4660-a68d-6fac8434baa3" }, { "id": "fc47d24e-a69d-4965-b56f-ffabd5660f15", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc47d24e-a69d-4965-b56f-ffabd5660f15" }, { "id": "97e7fcd5-9614-4702-9907-94f7022c9507", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-97e7fcd5-9614-4702-9907-94f7022c9507" }, { "id": "bfd64895-2509-4fdf-a33a-c153b0be7a7e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bfd64895-2509-4fdf-a33a-c153b0be7a7e" }, { "id": "a645d01f-6c17-4c41-a1f1-01bb97f405a5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a645d01f-6c17-4c41-a1f1-01bb97f405a5" }, { "id": "491b9c21-a30a-47b3-98f0-ac691c62a7ee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-491b9c21-a30a-47b3-98f0-ac691c62a7ee" }, { "id": "64d66aff-51a4-41f5-83dc-f00f7f51c30a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cash_flow?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "cash_flow" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the cash flow statements", "key": "period", "value": "annual" }, { "description": "Start date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or after this date will be included.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering cash flow statements.\nOnly cash flow statements with fiscal dates on or before this date will be included.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64d66aff-51a4-41f5-83dc-f00f7f51c30a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e51e739-17e0-46d9-b18d-d8b139c3949a" } ], "id": "36ff2d83-1ee8-4f1a-aca5-a097d6456629", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-36ff2d83-1ee8-4f1a-aca5-a097d6456629" }, { "name": "cci", "item": [ { "name": "Commodity channel index", "id": "c56ed7a0-43f6-4f8d-baa6-a415a8d94216", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Commodity Channel Index (CCI) endpoint provides data on the CCI values for a specified security, helping users detect potential price reversals by identifying overbought or oversold conditions. It returns a series of CCI values calculated over a specified time period, allowing users to assess the momentum of a security relative to its average price range." }, "response": [ { "id": "07c67e5f-7247-4db0-90db-cb85d00bcfc0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"cci\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"cci\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-07c67e5f-7247-4db0-90db-cb85d00bcfc0" }, { "id": "02991a68-6f8b-4f37-bf7b-0e58d7d487d4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-02991a68-6f8b-4f37-bf7b-0e58d7d487d4" }, { "id": "e482af54-18b3-4683-8e7f-40ec1e42b246", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e482af54-18b3-4683-8e7f-40ec1e42b246" }, { "id": "5c40a07e-f187-4a14-b4a3-0bb8957cd638", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5c40a07e-f187-4a14-b4a3-0bb8957cd638" }, { "id": "4ee17677-3432-4d06-8044-cf88bdef91ba", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ee17677-3432-4d06-8044-cf88bdef91ba" }, { "id": "9cf98580-46d9-4dde-8658-b889f9713300", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9cf98580-46d9-4dde-8658-b889f9713300" }, { "id": "ac905ff7-9278-464b-ac4c-d032f9ea4dcc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ac905ff7-9278-464b-ac4c-d032f9ea4dcc" }, { "id": "ca2ca37f-c5a0-446f-9f01-19791f966cd0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cci?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cci" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca2ca37f-c5a0-446f-9f01-19791f966cd0" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c56ed7a0-43f6-4f8d-baa6-a415a8d94216" } ], "id": "243911fc-8b69-4dc5-8ebb-ad4f13e1e0f8", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-243911fc-8b69-4dc5-8ebb-ad4f13e1e0f8" }, { "name": "ceil", "item": [ { "name": "Ceiling", "id": "69224b43-5d0b-4c3c-b222-4c3e50dee494", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Ceiling (CEIL) endpoint rounds each value in the input data series up to the nearest whole number. It returns a series where each original data point is adjusted to its ceiling value, which can be useful for precise calculations or when integrating with other technical indicators that require integer inputs." }, "response": [ { "id": "337f23ab-8aac-4eaa-9447-108e3ca5cc49", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"ceil\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"ceil\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-337f23ab-8aac-4eaa-9447-108e3ca5cc49" }, { "id": "906e225f-a1cb-4a51-ab50-3c8c8a885af0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-906e225f-a1cb-4a51-ab50-3c8c8a885af0" }, { "id": "f344375a-d817-46ac-b244-8c53029b6500", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f344375a-d817-46ac-b244-8c53029b6500" }, { "id": "11fdff02-5dd4-42ac-8d59-5d61668d29d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-11fdff02-5dd4-42ac-8d59-5d61668d29d6" }, { "id": "29e34848-8899-4646-97fc-f5f6636cfe16", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-29e34848-8899-4646-97fc-f5f6636cfe16" }, { "id": "833c8d15-110f-4c03-982f-7414254ff251", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-833c8d15-110f-4c03-982f-7414254ff251" }, { "id": "e2d9ce14-e551-49f8-824a-a19b73c5aca1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e2d9ce14-e551-49f8-824a-a19b73c5aca1" }, { "id": "3150032d-0e1c-4be1-9e1e-e26a61f665a8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ceil?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ceil" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3150032d-0e1c-4be1-9e1e-e26a61f665a8" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-69224b43-5d0b-4c3c-b222-4c3e50dee494" } ], "id": "3c34fbf7-4e67-44f2-887b-0290e57e77f2", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3c34fbf7-4e67-44f2-887b-0290e57e77f2" }, { "name": "cmo", "item": [ { "name": "Chande momentum oscillator", "id": "b4f247d3-bb7b-49a2-8841-0f2d0a236c78", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Chande Momentum Oscillator (CMO) endpoint provides data on the momentum of a security by calculating the relative strength of recent price movements. It returns a numerical value indicating whether a security is potentially overbought or oversold, assisting users in identifying possible trend reversals." }, "response": [ { "id": "5eba0861-17ec-406d-82fa-0e0528b48830", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"cmo\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"cmo\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5eba0861-17ec-406d-82fa-0e0528b48830" }, { "id": "b3534533-041d-4e56-9f29-adf8eb4f8143", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b3534533-041d-4e56-9f29-adf8eb4f8143" }, { "id": "e43bbe83-e719-4bcd-bebe-58f3ff08f2aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e43bbe83-e719-4bcd-bebe-58f3ff08f2aa" }, { "id": "6a5eb815-bdeb-4dad-8bda-56ba256a5fc2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6a5eb815-bdeb-4dad-8bda-56ba256a5fc2" }, { "id": "46e91368-5f83-41e3-b333-dc308b96db1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-46e91368-5f83-41e3-b333-dc308b96db1a" }, { "id": "1bb670da-bfeb-4ba2-bf5b-656e38c011e0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1bb670da-bfeb-4ba2-bf5b-656e38c011e0" }, { "id": "0d0e38d0-157e-417d-995f-01306e752d89", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0d0e38d0-157e-417d-995f-01306e752d89" }, { "id": "f698e647-1322-436f-9c59-13ac5cb8f6cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cmo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "cmo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f698e647-1322-436f-9c59-13ac5cb8f6cb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b4f247d3-bb7b-49a2-8841-0f2d0a236c78" } ], "id": "081edd6b-2940-4227-b6db-339ee77421da", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-081edd6b-2940-4227-b6db-339ee77421da" }, { "name": "commodities", "item": [ { "name": "Commodities", "id": "10804fa9-90d1-4907-81a8-12ba395cc60b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] }, "description": "The commodities endpoint provides a daily updated list of available commodity pairs, across precious metals, livestock, softs, grains, etc." }, "response": [ { "id": "3a886066-211c-4684-ba7e-7743ac299812", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"category\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n {\n \"category\": \"\",\n \"description\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3a886066-211c-4684-ba7e-7743ac299812" }, { "id": "7c873c88-f76f-4681-967a-da22561bbbef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c873c88-f76f-4681-967a-da22561bbbef" }, { "id": "045edda7-3431-4515-90e8-64815b923027", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-045edda7-3431-4515-90e8-64815b923027" }, { "id": "ae2493e1-ae14-4394-aac4-d2513d846dea", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae2493e1-ae14-4394-aac4-d2513d846dea" }, { "id": "374e3e39-ce1c-4444-8e8e-083b319ff7d2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-374e3e39-ce1c-4444-8e8e-083b319ff7d2" }, { "id": "0813db5f-73ed-4cd9-930e-b4af219f41b0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0813db5f-73ed-4cd9-930e-b4af219f41b0" }, { "id": "05aa7a7a-d91f-464d-a334-1e26b96faf8d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-05aa7a7a-d91f-464d-a334-1e26b96faf8d" }, { "id": "966d5693-35f8-4566-b22e-42cda6ca5cf1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/commodities?symbol=&category=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "commodities" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by category of commodity", "key": "category", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-966d5693-35f8-4566-b22e-42cda6ca5cf1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-10804fa9-90d1-4907-81a8-12ba395cc60b" } ], "id": "58f6830b-95ff-46e7-8eda-78f5a5fc6b39", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-58f6830b-95ff-46e7-8eda-78f5a5fc6b39" }, { "name": "coppock", "item": [ { "name": "Coppock curve", "id": "caf17bd9-9d99-4fdf-ac14-90c699c1822e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Coppock Curve is a momentum oscillator used to detect potential long-term trend reversals in financial markets. It returns the calculated values of this indicator over a specified period, allowing users to identify when a security's price may be shifting from a downtrend to an uptrend. This endpoint is particularly useful for analyzing securities in bottoming markets." }, "response": [ { "id": "bc51ae6a-473e-4064-9398-3c2e3b24b3ec", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"long_roc_period\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"short_roc_period\": \"\",\n \"wma_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"coppock\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"coppock\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bc51ae6a-473e-4064-9398-3c2e3b24b3ec" }, { "id": "2ea33e9a-5aad-4977-993b-64dad75152cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2ea33e9a-5aad-4977-993b-64dad75152cc" }, { "id": "abbc009e-250b-4895-957a-dbed27514744", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-abbc009e-250b-4895-957a-dbed27514744" }, { "id": "6698e445-1573-438c-90bc-442f690c67f5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6698e445-1573-438c-90bc-442f690c67f5" }, { "id": "a638d0f8-2125-4866-a76a-054028cafba2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a638d0f8-2125-4866-a76a-054028cafba2" }, { "id": "b1a8f8dd-100e-4583-9ede-5a09e9cabb08", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b1a8f8dd-100e-4583-9ede-5a09e9cabb08" }, { "id": "055fd8d1-97ac-4a53-b4d5-d0e1c3753cc6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-055fd8d1-97ac-4a53-b4d5-d0e1c3753cc6" }, { "id": "78dc83df-c793-42f8-a1e1-3c4586e8fd8b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/coppock?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&wma_period=10&long_roc_period=14&short_roc_period=11&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "coppock" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for weighted moving average. Takes values in the range from `1` to `800`", "key": "wma_period", "value": "10" }, { "description": "Number of periods for long term rate of change. Takes values in the range from `1` to `800`", "key": "long_roc_period", "value": "14" }, { "description": "Number of periods for short term rate of change. Takes values in the range from `1` to `800`", "key": "short_roc_period", "value": "11" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-78dc83df-c793-42f8-a1e1-3c4586e8fd8b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-caf17bd9-9d99-4fdf-ac14-90c699c1822e" } ], "id": "0f68f4bd-96d1-4e0d-aaf3-65ca834ebbce", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0f68f4bd-96d1-4e0d-aaf3-65ca834ebbce" }, { "name": "correl", "item": [ { "name": "Correlation", "id": "21643ead-5eca-430d-9945-d320b6062cbb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Correlation (CORREL) endpoint calculates the statistical relationship between two securities over a specified time period, returning a correlation coefficient. This coefficient ranges from -1 to 1, indicating the strength and direction of their linear relationship. A value close to 1 suggests a strong positive correlation, while a value near -1 indicates a strong negative correlation. This data is useful for identifying securities that move together or in opposite directions, aiding in strategies like diversification or pairs trading." }, "response": [ { "id": "57cbbff4-dea6-4a0e-951e-9c7993b0a60e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"correl\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"correl\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-57cbbff4-dea6-4a0e-951e-9c7993b0a60e" }, { "id": "6e17feee-3928-4a6d-b9b6-6f1a99557044", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e17feee-3928-4a6d-b9b6-6f1a99557044" }, { "id": "630aab60-0991-462e-a2a2-e9c666cd8ad2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-630aab60-0991-462e-a2a2-e9c666cd8ad2" }, { "id": "2abeadd3-72b7-4c22-98e8-270a046f16aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2abeadd3-72b7-4c22-98e8-270a046f16aa" }, { "id": "6ba4571c-bbc2-47a6-a184-0cb924260f35", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6ba4571c-bbc2-47a6-a184-0cb924260f35" }, { "id": "bb17ce7f-8b59-4811-a787-3ec00588223f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bb17ce7f-8b59-4811-a787-3ec00588223f" }, { "id": "9c0e8008-8ffc-4edd-a090-c0468838a8a6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c0e8008-8ffc-4edd-a090-c0468838a8a6" }, { "id": "224b2dd0-ff1d-4e77-9dc8-cac47d523ddd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/correl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "correl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-224b2dd0-ff1d-4e77-9dc8-cac47d523ddd" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21643ead-5eca-430d-9945-d320b6062cbb" } ], "id": "64943bf9-12a8-4943-8da9-3af36227fd7f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-64943bf9-12a8-4943-8da9-3af36227fd7f" }, { "name": "countries", "item": [ { "name": "Countries", "id": "8d21799e-f8d2-4b27-a6d3-5936ad8d2463", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] }, "description": "The countries endpoint provides a comprehensive list of countries, including their ISO codes, official names, capitals, and currencies. This data is essential for applications requiring accurate country information for tasks such as localization, currency conversion, or geographic analysis." }, "response": [ { "id": "c1eaceae-e1ab-4228-93ef-3e059c308998", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"capital\": \"\",\n \"currency\": \"\",\n \"iso2\": \"\",\n \"iso3\": \"\",\n \"name\": \"\",\n \"numeric\": \"\",\n \"official_name\": \"\"\n },\n {\n \"capital\": \"\",\n \"currency\": \"\",\n \"iso2\": \"\",\n \"iso3\": \"\",\n \"name\": \"\",\n \"numeric\": \"\",\n \"official_name\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c1eaceae-e1ab-4228-93ef-3e059c308998" }, { "id": "c0a1e98d-abc5-4100-b2b1-448476228dfa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c0a1e98d-abc5-4100-b2b1-448476228dfa" }, { "id": "f5f3b4ae-9658-452d-a246-1282e65b2aa2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f5f3b4ae-9658-452d-a246-1282e65b2aa2" }, { "id": "e4601d7d-4c67-4210-93d0-6339910ab54a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e4601d7d-4c67-4210-93d0-6339910ab54a" }, { "id": "98a1dbd6-bf6a-49c8-a1c3-8dafa7d0c32d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-98a1dbd6-bf6a-49c8-a1c3-8dafa7d0c32d" }, { "id": "67bda020-6416-4214-8d1f-5b87ce8cf141", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-67bda020-6416-4214-8d1f-5b87ce8cf141" }, { "id": "a44eb00a-9371-48c1-bf89-5e08b8acc0e4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a44eb00a-9371-48c1-bf89-5e08b8acc0e4" }, { "id": "8316d3cb-0e3a-4ab4-8c26-e716774444ca", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/countries", "host": [ "{{baseUrl}}" ], "path": [ "countries" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8316d3cb-0e3a-4ab4-8c26-e716774444ca" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8d21799e-f8d2-4b27-a6d3-5936ad8d2463" } ], "id": "ef620f4e-8e41-4856-a607-f5bd405fea48", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-ef620f4e-8e41-4856-a607-f5bd405fea48" }, { "name": "cross_listings", "item": [ { "name": "Cross listings", "id": "e093e224-dd22-4c3f-b10f-7ef8f4a79352", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] }, "description": "The cross_listings endpoint provides a daily updated list of cross-listed symbols for a specified financial instrument. Cross-listed symbols represent the same security available on multiple exchanges. This endpoint is useful for identifying all the exchanges where a particular security is traded, allowing users to access comprehensive trading information across different markets." }, "response": [ { "id": "cebc02bc-f729-4bc4-872c-efbb6d596204", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"count\": \"\",\n \"list\": [\n {\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n {\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n ]\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cebc02bc-f729-4bc4-872c-efbb6d596204" }, { "id": "aa8f7af8-17b4-4219-a875-ad8a1e4b8323", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa8f7af8-17b4-4219-a875-ad8a1e4b8323" }, { "id": "5fc0e550-56f0-46bf-a450-7f4d809f391b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5fc0e550-56f0-46bf-a450-7f4d809f391b" }, { "id": "125a8b2c-13c1-4669-a7ab-d67a48074cf5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-125a8b2c-13c1-4669-a7ab-d67a48074cf5" }, { "id": "8745c104-3040-4a94-b5dc-0194ecff2a58", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8745c104-3040-4a94-b5dc-0194ecff2a58" }, { "id": "ae8ed472-518a-44f2-aab5-e861fad57bab", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae8ed472-518a-44f2-aab5-e861fad57bab" }, { "id": "7eae6ff1-773a-416a-8bf2-f85ecf6f40ba", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7eae6ff1-773a-416a-8bf2-f85ecf6f40ba" }, { "id": "82c26112-11c2-4489-9362-d83d5201c751", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cross_listings?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "cross_listings" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country to which stock exchange belongs to", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-82c26112-11c2-4489-9362-d83d5201c751" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e093e224-dd22-4c3f-b10f-7ef8f4a79352" } ], "id": "e0d291bb-b578-4402-a835-47cca4c1e6d4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e0d291bb-b578-4402-a835-47cca4c1e6d4" }, { "name": "crsi", "item": [ { "name": "Connors relative strength index", "id": "558b5719-6727-4736-84fa-3bd3969b2241", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Connors Relative Strength Index (CRSI) endpoint provides a detailed analysis of stock momentum by combining three components: the Relative Strength Index, the Rate of Change, and the Up/Down Length. This endpoint returns a numerical value that helps identify potential trend reversals and momentum shifts in a security's price. Ideal for traders seeking to refine entry and exit points, the CRSI offers a nuanced view of market conditions beyond traditional RSI indicators." }, "response": [ { "id": "72cdb6ca-211f-4bfa-b757-e863096a51a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"percent_rank_period\": \"\",\n \"rsi_period\": \"\",\n \"series_type\": \"\",\n \"up_down_length\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"crsi\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"crsi\": \"\",\n \"datetime\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-72cdb6ca-211f-4bfa-b757-e863096a51a2" }, { "id": "566de159-1bdd-49a3-bb87-fddb47994274", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-566de159-1bdd-49a3-bb87-fddb47994274" }, { "id": "9e4d8886-a689-4229-8c64-29192e580341", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9e4d8886-a689-4229-8c64-29192e580341" }, { "id": "9724f014-8e23-407e-975c-06c6c50624b6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9724f014-8e23-407e-975c-06c6c50624b6" }, { "id": "384a47dc-94c0-4f60-89ac-ce657c0e929c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-384a47dc-94c0-4f60-89ac-ce657c0e929c" }, { "id": "909e35e9-a14d-4b19-8e2d-381cebf3a617", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-909e35e9-a14d-4b19-8e2d-381cebf3a617" }, { "id": "18afbe93-9a31-4aa8-99fc-8124fc17fc05", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-18afbe93-9a31-4aa8-99fc-8124fc17fc05" }, { "id": "63d04dee-d2fa-417b-b2c5-9d92adaa0e73", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/crsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&rsi_period=3&up_down_length=2&percent_rank_period=100&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "crsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for RSI used to calculate price momentum. Takes values in the range from `1` to `800`", "key": "rsi_period", "value": "3" }, { "description": "Number of periods for RSI used to calculate up/down trend. Takes values in the range from `1` to `800`", "key": "up_down_length", "value": "2" }, { "description": "Number of periods used to calculate PercentRank. Takes values in the range from `1` to `800`", "key": "percent_rank_period", "value": "100" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-63d04dee-d2fa-417b-b2c5-9d92adaa0e73" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-558b5719-6727-4736-84fa-3bd3969b2241" } ], "id": "2bfc259f-64f1-4555-a99f-d8e296d873f2", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2bfc259f-64f1-4555-a99f-d8e296d873f2" }, { "name": "cryptocurrencies", "item": [ { "name": "Cryptocurrency pairs", "id": "c99fc1cc-730d-4f9b-83b4-ce96ea1c9405", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] }, "description": "The cryptocurrencies endpoint provides a daily updated list of all available cryptos. It returns an array containing detailed information about each cryptocurrency, including its symbol, name, and other relevant identifiers. This endpoint is useful for retrieving a comprehensive catalog of cryptocurrencies for applications that require up-to-date market listings or need to display available crypto assets to users." }, "response": [ { "id": "36735aed-ecf3-415b-9239-d02f5d573eb1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"available_exchanges\": [\n \"\",\n \"\"\n ],\n \"currency_base\": \"\",\n \"currency_quote\": \"\",\n \"symbol\": \"\"\n },\n {\n \"available_exchanges\": [\n \"\",\n \"\"\n ],\n \"currency_base\": \"\",\n \"currency_quote\": \"\",\n \"symbol\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-36735aed-ecf3-415b-9239-d02f5d573eb1" }, { "id": "0fd1cf9a-ba77-4c2e-b0d4-fb878a406199", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0fd1cf9a-ba77-4c2e-b0d4-fb878a406199" }, { "id": "593b1b33-f1e9-4210-803e-976a1572d14e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-593b1b33-f1e9-4210-803e-976a1572d14e" }, { "id": "e01df303-b74d-4942-af0c-ff613556985e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e01df303-b74d-4942-af0c-ff613556985e" }, { "id": "48ae4d60-7aad-4589-9e32-7ad9b62b4b17", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-48ae4d60-7aad-4589-9e32-7ad9b62b4b17" }, { "id": "c51b9680-63b5-4f06-aeed-db6e2463a40f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c51b9680-63b5-4f06-aeed-db6e2463a40f" }, { "id": "711c1cef-1752-4d03-96a9-bbe569581427", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-711c1cef-1752-4d03-96a9-bbe569581427" }, { "id": "3b2d3ad4-0165-48bd-83f1-61c4efcbd6e0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrencies?symbol=&exchange=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrencies" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by exchange name. E.g. `Binance`, `Coinbase`, etc.", "key": "exchange", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3b2d3ad4-0165-48bd-83f1-61c4efcbd6e0" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c99fc1cc-730d-4f9b-83b4-ce96ea1c9405" } ], "id": "07642c96-389c-4f92-9437-8b5d7668fa10", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-07642c96-389c-4f92-9437-8b5d7668fa10" }, { "name": "cryptocurrency_exchanges", "item": [ { "name": "Cryptocurrency exchanges", "id": "fe1d4705-8f40-4613-9fed-be47010f4ab2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] }, "description": "The cryptocurrency exchanges endpoint provides a daily updated list of available cryptocurrency exchanges. It returns an array containing details about each exchange, such as exchange names and identifiers." }, "response": [ { "id": "ad28dacf-a98f-4ea3-a04f-9d97d86fe984", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"name\": \"\"\n },\n {\n \"name\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ad28dacf-a98f-4ea3-a04f-9d97d86fe984" }, { "id": "1e345f8f-a464-40fb-afa8-5a86d6b7a846", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1e345f8f-a464-40fb-afa8-5a86d6b7a846" }, { "id": "08673963-3026-435d-97b9-740df91271f8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-08673963-3026-435d-97b9-740df91271f8" }, { "id": "7b57b81c-72a6-4613-a23d-88e2db9b9670", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b57b81c-72a6-4613-a23d-88e2db9b9670" }, { "id": "ca6a11e9-b756-4c38-bbab-d1e8bbb3ddf8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca6a11e9-b756-4c38-bbab-d1e8bbb3ddf8" }, { "id": "3167c297-ef4c-4765-9440-8861174f0939", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3167c297-ef4c-4765-9440-8861174f0939" }, { "id": "52bbc505-9111-478d-8c67-4933a541794b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-52bbc505-9111-478d-8c67-4933a541794b" }, { "id": "f111059f-9c9a-44ee-9099-d90fa1cb67cf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/cryptocurrency_exchanges?format=JSON&delimiter=;", "host": [ "{{baseUrl}}" ], "path": [ "cryptocurrency_exchanges" ], "query": [ { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f111059f-9c9a-44ee-9099-d90fa1cb67cf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fe1d4705-8f40-4613-9fed-be47010f4ab2" } ], "id": "94d6328c-c132-4493-8015-f425c710d179", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-94d6328c-c132-4493-8015-f425c710d179" }, { "name": "currency_conversion", "item": [ { "name": "Currency conversion", "id": "deb61bb6-a8b7-4ec4-8a37-69311e89cf51", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] }, "description": "The currency conversion endpoint provides real-time exchange rates and calculates the converted amount for specified currency pairs, including both forex and cryptocurrencies. This endpoint is useful for obtaining up-to-date conversion values between two currencies, facilitating tasks such as financial reporting, e-commerce transactions, and travel budgeting." }, "response": [ { "id": "0b58a3fe-7a74-4dea-b553-601c4efc5650", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"rate\": \"\",\n \"symbol\": \"\",\n \"timestamp\": \"\",\n \"amount\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0b58a3fe-7a74-4dea-b553-601c4efc5650" }, { "id": "3cd29529-246c-46ce-8204-bffccb14b205", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3cd29529-246c-46ce-8204-bffccb14b205" }, { "id": "591f21c8-350f-464a-945c-f2f8708f194e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-591f21c8-350f-464a-945c-f2f8708f194e" }, { "id": "a8bcb6c3-1022-4dc8-acca-27c582d19de7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8bcb6c3-1022-4dc8-acca-27c582d19de7" }, { "id": "c656c4ca-cd9e-4f38-b9c6-15513b96117b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c656c4ca-cd9e-4f38-b9c6-15513b96117b" }, { "id": "2ad132ce-88bd-4ed0-acd7-0122fd865cd6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2ad132ce-88bd-4ed0-acd7-0122fd865cd6" }, { "id": "2eb04374-a1b2-4b93-8901-ba9ef4da6a77", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2eb04374-a1b2-4b93-8901-ba9ef4da6a77" }, { "id": "78230c2c-ab44-48f8-87db-994a70b8745c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/currency_conversion?symbol=&amount=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "currency_conversion" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "(Required) Amount of base currency to be converted into quote currency. Supports values in the range from `0` and above", "key": "amount", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-78230c2c-ab44-48f8-87db-994a70b8745c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-deb61bb6-a8b7-4ec4-8a37-69311e89cf51" } ], "id": "deadbbaa-b26f-4a84-a354-3d1f82558df5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-deadbbaa-b26f-4a84-a354-3d1f82558df5" }, { "name": "dema", "item": [ { "name": "Double exponential moving average", "id": "0cee0a4e-691a-4f01-ad8c-2f8002a420dd", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Double Exponential Moving Average (DEMA) endpoint provides a data series that calculates a moving average with reduced lag by emphasizing recent price data. This endpoint returns time-series data that includes the DEMA values for a specified financial instrument, allowing users to track price trends and identify potential trading opportunities." }, "response": [ { "id": "892ca55d-740c-4c1f-a01e-290f15a4f134", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"dema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"dema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-892ca55d-740c-4c1f-a01e-290f15a4f134" }, { "id": "91d5d650-d67f-4c07-86e3-c0e8473655f1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91d5d650-d67f-4c07-86e3-c0e8473655f1" }, { "id": "415f7911-cd88-4abb-94e7-ba47d8bec4ae", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-415f7911-cd88-4abb-94e7-ba47d8bec4ae" }, { "id": "4b45dc58-fbab-4756-8d8f-f68318290827", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b45dc58-fbab-4756-8d8f-f68318290827" }, { "id": "88a188bd-3d7f-4e4e-8183-bbe1400d43a9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-88a188bd-3d7f-4e4e-8183-bbe1400d43a9" }, { "id": "932001eb-fec3-4f2f-9b7c-682b5175b27f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-932001eb-fec3-4f2f-9b7c-682b5175b27f" }, { "id": "cfedbf97-1c4d-4e82-81b1-335dc9267b83", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cfedbf97-1c4d-4e82-81b1-335dc9267b83" }, { "id": "acac2068-9612-4508-bbae-35538cb1fc60", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-acac2068-9612-4508-bbae-35538cb1fc60" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0cee0a4e-691a-4f01-ad8c-2f8002a420dd" } ], "id": "ab9b57df-0004-4b39-89eb-dcdff19d0f2f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-ab9b57df-0004-4b39-89eb-dcdff19d0f2f" }, { "name": "direct_holders", "item": [ { "name": "Direct holders", "id": "e7f461a3-eb2e-4a0d-971e-7b26d0df692a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The direct holders endpoint provides detailed information about the number of shares directly held by individuals or entities as recorded in a company's official share registry. This data is essential for understanding the distribution of stock ownership within a company, helping users identify major shareholders and assess shareholder concentration." }, "response": [ { "id": "291b502e-a03f-498b-b867-97521a4560ee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"direct_holders\": [\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n },\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-291b502e-a03f-498b-b867-97521a4560ee" }, { "id": "f7118308-79f5-43ca-9274-b9aad9d87021", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f7118308-79f5-43ca-9274-b9aad9d87021" }, { "id": "f6524063-7476-487c-9bb5-e7b490c8e425", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f6524063-7476-487c-9bb5-e7b490c8e425" }, { "id": "c54020a7-c897-41a6-a0e1-5c1162f8021e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c54020a7-c897-41a6-a0e1-5c1162f8021e" }, { "id": "2c4048d2-7771-45ad-857d-79bdd8224967", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2c4048d2-7771-45ad-857d-79bdd8224967" }, { "id": "83519e21-b2c4-4d10-87b4-05a9d56ca46c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-83519e21-b2c4-4d10-87b4-05a9d56ca46c" }, { "id": "e74ca631-b9d1-4bf4-a340-ce8cc7fffa77", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e74ca631-b9d1-4bf4-a340-ce8cc7fffa77" }, { "id": "7a5e21a8-5f8c-414b-85d4-ca560a34fa2f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/direct_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "direct_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7a5e21a8-5f8c-414b-85d4-ca560a34fa2f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e7f461a3-eb2e-4a0d-971e-7b26d0df692a" } ], "id": "949185b1-0d3e-4cab-8f98-c440e059070d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-949185b1-0d3e-4cab-8f98-c440e059070d" }, { "name": "div", "item": [ { "name": "Division", "id": "1d19ee93-85ce-4eda-a237-04eb0cdc2a6b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Division (DIV) endpoint calculates the result of dividing one data series by another, providing a normalized output. It is commonly used to combine or adjust multiple technical indicators or price data for comparative analysis. This endpoint returns the division results as a time series, allowing users to easily interpret and utilize the normalized data in their financial models or charts." }, "response": [ { "id": "c7a7f2f9-31d3-4f06-ba41-f12ab1bc494a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"div\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"div\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c7a7f2f9-31d3-4f06-ba41-f12ab1bc494a" }, { "id": "1f161255-d677-474e-a735-e834a711f007", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f161255-d677-474e-a735-e834a711f007" }, { "id": "f2a73133-8a4e-4bb2-995a-1462e76c603f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f2a73133-8a4e-4bb2-995a-1462e76c603f" }, { "id": "f58b0189-01ad-4eff-be08-dfc6ca8867d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f58b0189-01ad-4eff-be08-dfc6ca8867d6" }, { "id": "068a8f0a-9201-4b8a-918e-34fb0bb9f7a1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-068a8f0a-9201-4b8a-918e-34fb0bb9f7a1" }, { "id": "898d9ee1-975b-4db5-9206-331357bbf8ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-898d9ee1-975b-4db5-9206-331357bbf8ce" }, { "id": "bb77aa23-43ec-4e8f-9b7c-ae820432d32d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bb77aa23-43ec-4e8f-9b7c-ae820432d32d" }, { "id": "f3cb2178-e3da-4aca-821f-01d808a910a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/div?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "div" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f3cb2178-e3da-4aca-821f-01d808a910a2" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1d19ee93-85ce-4eda-a237-04eb0cdc2a6b" } ], "id": "5a5af3b6-458c-4d07-864a-870b338f4076", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-5a5af3b6-458c-4d07-864a-870b338f4076" }, { "name": "dividends", "item": [ { "name": "Dividends", "id": "b0f1e607-6b04-4217-bca1-30e436158f97", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] }, "description": "The dividends endpoint provides historical dividend data for a specified stock, in many cases covering over a decade. It returns information on dividend payouts, including the ex-date, amount, and frequency. This endpoint is ideal for users tracking dividend histories or evaluating the income potential of stocks." }, "response": [ { "id": "f74dc6d4-0090-4ab3-bfe6-23924ba85f46", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"dividends\": [\n {\n \"amount\": \"\",\n \"ex_date\": \"\"\n },\n {\n \"amount\": \"\",\n \"ex_date\": \"\"\n }\n ],\n \"meta\": {\n \"symbol\": \"\",\n \"name\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"exchange_timezone\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f74dc6d4-0090-4ab3-bfe6-23924ba85f46" }, { "id": "465c0152-3416-4c9b-92ed-81f500b9fa6c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-465c0152-3416-4c9b-92ed-81f500b9fa6c" }, { "id": "6e73b6b2-e638-49f3-8ad7-90b606823409", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e73b6b2-e638-49f3-8ad7-90b606823409" }, { "id": "3f7ce5db-4dcf-45b8-8dbb-6caff524db97", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f7ce5db-4dcf-45b8-8dbb-6caff524db97" }, { "id": "eb69b068-41dc-4db7-9898-c21add5d8077", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eb69b068-41dc-4db7-9898-c21add5d8077" }, { "id": "38100613-1a0b-49fe-9e40-f404f52f525d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38100613-1a0b-49fe-9e40-f404f52f525d" }, { "id": "448aa2b4-8037-482c-bcae-105bac5b64b3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-448aa2b4-8037-482c-bcae-105bac5b64b3" }, { "id": "64118500-1ad5-424b-9b35-6eb2804009e1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=&adjust=true", "host": [ "{{baseUrl}}" ], "path": [ "dividends" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Specifies the time range for which to retrieve dividend data.\nAccepts values such as `last` (most recent dividend), `next` (upcoming dividend),\n`1m` - `5y` for respective periods, or `full` for all available data.\nIf provided together with `start_date` and/or `end_date`, this parameter takes precedence.", "key": "range", "value": "last" }, { "description": "Start date for the dividend data query. Only dividends with dates on or after this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "start_date", "value": "" }, { "description": "End date for the dividend data query. Only dividends with dates on or before this date will be returned. Format `2006-01-02`.\nIf provided together with `range` parameter, `range` will take precedence.", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64118500-1ad5-424b-9b35-6eb2804009e1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b0f1e607-6b04-4217-bca1-30e436158f97" } ], "id": "b17d0933-2601-4c07-8b5d-de447ad596c7", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b17d0933-2601-4c07-8b5d-de447ad596c7" }, { "name": "dividends_calendar", "item": [ { "name": "Dividends calendar", "id": "ac40c570-a35e-4187-ab56-09a8a6481d79", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] }, "description": "The dividends calendar endpoint provides a detailed schedule of upcoming and past dividend events for specified date ranges. By using the `start_date` and `end_date` parameters, users can retrieve a list of companies issuing dividends, including the ex-dividend date and dividend amount. This endpoint is ideal for tracking dividend payouts and planning investment strategies based on dividend schedules." }, "response": [ { "id": "06304398-b77c-4aa2-a6d4-5d9cac3cd7bd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "[\n {\n \"amount\": \"\",\n \"ex_date\": \"\",\n \"symbol\": \"\",\n \"mic_code\": \"\",\n \"exchange\": \"\"\n },\n {\n \"amount\": \"\",\n \"ex_date\": \"\",\n \"symbol\": \"\",\n \"mic_code\": \"\",\n \"exchange\": \"\"\n }\n]", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-06304398-b77c-4aa2-a6d4-5d9cac3cd7bd" }, { "id": "0255d4d9-34ad-4e91-888e-98010a3b9f33", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0255d4d9-34ad-4e91-888e-98010a3b9f33" }, { "id": "dd5915e0-9a5a-4b38-82a9-e03bee45aef2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd5915e0-9a5a-4b38-82a9-e03bee45aef2" }, { "id": "e5215d37-c5bd-4bae-b922-7cd2e831d146", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e5215d37-c5bd-4bae-b922-7cd2e831d146" }, { "id": "458289c7-0f91-4dee-8843-165881e572f5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-458289c7-0f91-4dee-8843-165881e572f5" }, { "id": "15e95138-de31-409e-9ff7-cdba10315de7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-15e95138-de31-409e-9ff7-cdba10315de7" }, { "id": "0bd1c3a7-003f-4dbc-aa15-4bc4069b124c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0bd1c3a7-003f-4dbc-aa15-4bc4069b124c" }, { "id": "d0585990-58b4-4a67-8d37-2941099a884c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dividends_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "dividends_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for the dividends calendar query. Only dividends with ex-dates on or after this date will be returned. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for the dividends calendar query. Only dividends with ex-dates on or before this date will be returned. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `500`.\nDefault `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d0585990-58b4-4a67-8d37-2941099a884c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ac40c570-a35e-4187-ab56-09a8a6481d79" } ], "id": "f8194f9f-9a52-4571-9a97-49274fc0e43d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f8194f9f-9a52-4571-9a97-49274fc0e43d" }, { "name": "dpo", "item": [ { "name": "Detrended price oscillator", "id": "c9cfa4d9-b714-48eb-9436-0f967022bb9f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Detrended Price Oscillator (DPO) endpoint calculates and returns the DPO values for a specified financial instrument over a given time period. This endpoint helps traders by highlighting short-term price cycles and identifying potential overbought or oversold conditions without the influence of long-term trends. The response includes a series of DPO values, which can be used to assess price momentum and cyclical patterns in the market." }, "response": [ { "id": "5bd91374-bd70-43d8-9592-37d1c3b4a3e6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"centered\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"dpo\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"dpo\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5bd91374-bd70-43d8-9592-37d1c3b4a3e6" }, { "id": "e0398732-495d-4a87-b5a8-3eabf4eab01c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e0398732-495d-4a87-b5a8-3eabf4eab01c" }, { "id": "c1247b8b-5e88-402e-95cd-4015e5ebb0bd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c1247b8b-5e88-402e-95cd-4015e5ebb0bd" }, { "id": "43b93305-338e-46d1-89b2-ae8a6e0d3177", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-43b93305-338e-46d1-89b2-ae8a6e0d3177" }, { "id": "4cee47f3-e2d3-4ea1-84ae-657d369e7308", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4cee47f3-e2d3-4ea1-84ae-657d369e7308" }, { "id": "d7758055-673d-4717-a403-b970c331295e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d7758055-673d-4717-a403-b970c331295e" }, { "id": "a87d4d62-b401-4fdf-b3a1-a7883d761c6d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a87d4d62-b401-4fdf-b3a1-a7883d761c6d" }, { "id": "2bafd52c-e0bc-449c-82f4-52caf1b67223", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dpo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9¢ered=false&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dpo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specifies if there should be a shift to match the current price", "key": "centered", "value": "false" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2bafd52c-e0bc-449c-82f4-52caf1b67223" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c9cfa4d9-b714-48eb-9436-0f967022bb9f" } ], "id": "1c272836-8f9a-4e3a-852d-bdddae5910aa", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1c272836-8f9a-4e3a-852d-bdddae5910aa" }, { "name": "dx", "item": [ { "name": "Directional movement index", "id": "2e6b7221-e1d3-465e-8133-6971516bacb4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "Retrieve the Directional Movement Index (DX) values for a given security to assess the strength of its positive and negative price movements. This endpoint provides a time series of DX values, which are useful for evaluating the momentum and trend direction of the security over a specified period." }, "response": [ { "id": "5fc5897a-cd4f-4043-83f0-b936ef0b1267", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"dx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"dx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5fc5897a-cd4f-4043-83f0-b936ef0b1267" }, { "id": "21384879-e9d1-4d13-b72c-be77940852d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21384879-e9d1-4d13-b72c-be77940852d6" }, { "id": "7e4b30eb-f4c8-409e-8075-21d5e7a0bdf0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7e4b30eb-f4c8-409e-8075-21d5e7a0bdf0" }, { "id": "6be26c02-9d1f-4f9f-bec9-86e0cc03dadc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6be26c02-9d1f-4f9f-bec9-86e0cc03dadc" }, { "id": "0cc4f3ef-3e40-44ec-8c4e-6cb517de4804", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0cc4f3ef-3e40-44ec-8c4e-6cb517de4804" }, { "id": "a70a95d6-eb0c-4345-ae23-0d0f3b0ba955", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a70a95d6-eb0c-4345-ae23-0d0f3b0ba955" }, { "id": "ddb73abd-6b5b-4532-9efe-c1d0d6390d9b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ddb73abd-6b5b-4532-9efe-c1d0d6390d9b" }, { "id": "123e2cb3-d6e4-4c08-b699-b03cebacc223", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/dx?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "dx" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-123e2cb3-d6e4-4c08-b699-b03cebacc223" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e6b7221-e1d3-465e-8133-6971516bacb4" } ], "id": "15006154-db82-4541-bf83-bfee5aa38ace", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-15006154-db82-4541-bf83-bfee5aa38ace" }, { "name": "earliest_timestamp", "item": [ { "name": "Earliest timestamp", "id": "aa47db86-a7b5-48ec-a1d3-edcb17a23d90", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] }, "description": "The earliest_timestamp endpoint provides the earliest available date and time for a specified financial instrument at a given data interval. This endpoint is useful for determining the starting point of historical data availability for various assets, such as stocks or currencies, allowing users to understand the time range covered by the data." }, "response": [ { "id": "eac5981c-4594-4921-984e-7ee8b71b5362", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"datetime\": \"\",\n \"unix_time\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eac5981c-4594-4921-984e-7ee8b71b5362" }, { "id": "0a7665dc-2cf2-4298-a049-4fdac7c587e1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0a7665dc-2cf2-4298-a049-4fdac7c587e1" }, { "id": "a2f6907d-db4e-49bd-af94-6454c276dfc1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a2f6907d-db4e-49bd-af94-6454c276dfc1" }, { "id": "678927c4-5559-4717-84b2-c11b73d27cd1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-678927c4-5559-4717-84b2-c11b73d27cd1" }, { "id": "9fd2c765-3773-4c00-a2ed-dfb5b37a183d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9fd2c765-3773-4c00-a2ed-dfb5b37a183d" }, { "id": "7cd15ec3-a35e-4736-ba21-9871733db1a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7cd15ec3-a35e-4736-ba21-9871733db1a2" }, { "id": "9bca786a-7a99-46a8-be20-1135f26c1964", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9bca786a-7a99-46a8-be20-1135f26c1964" }, { "id": "03511cee-9458-4c85-8847-1bdce3d6c460", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earliest_timestamp?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "earliest_timestamp" ], "query": [ { "description": "Symbol ticker of the instrument.", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series.", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded.", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard.", "key": "mic_code", "value": "" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-03511cee-9458-4c85-8847-1bdce3d6c460" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa47db86-a7b5-48ec-a1d3-edcb17a23d90" } ], "id": "6316a392-cee9-49d5-b539-40c1647712d4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-6316a392-cee9-49d5-b539-40c1647712d4" }, { "name": "earnings", "item": [ { "name": "Earnings", "id": "a41c1f66-95d9-4273-a0d4-79c5735abd30", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] }, "description": "The earnings endpoint provides comprehensive earnings data for a specified company, including both the estimated and actual Earnings Per Share (EPS) figures. This endpoint delivers historical earnings information, allowing users to track a company's financial performance over time." }, "response": [ { "id": "97e1a883-039a-426c-b931-bae28e2093a4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"earnings\": [\n {\n \"date\": \"\",\n \"time\": \"\",\n \"eps_estimate\": \"\",\n \"eps_actual\": \"\",\n \"difference\": \"\",\n \"surprise_prc\": \"\"\n },\n {\n \"date\": \"\",\n \"time\": \"\",\n \"eps_estimate\": \"\",\n \"eps_actual\": \"\",\n \"difference\": \"\",\n \"surprise_prc\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-97e1a883-039a-426c-b931-bae28e2093a4" }, { "id": "dd6f24fd-31df-480c-994f-a01161a549e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd6f24fd-31df-480c-994f-a01161a549e8" }, { "id": "28a6bc8a-462c-4d3a-9bf9-c671af1d0266", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-28a6bc8a-462c-4d3a-9bf9-c671af1d0266" }, { "id": "e3a65eb2-f407-4754-98e7-232cae465f5f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e3a65eb2-f407-4754-98e7-232cae465f5f" }, { "id": "8894eb79-0503-45b5-a5c0-39de4098bff9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8894eb79-0503-45b5-a5c0-39de4098bff9" }, { "id": "6abf59cf-ea46-44ad-875d-cf6cb91d8758", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6abf59cf-ea46-44ad-875d-cf6cb91d8758" }, { "id": "ec4340d4-3551-462a-a675-a3f9853bd517", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec4340d4-3551-462a-a675-a3f9853bd517" }, { "id": "ecebdf3b-ecc4-4360-b3bd-26bf31232f90", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&period=latest&outputsize=10&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Type of earning, returns only 1 record.\nWhen is not empty, dates and outputsize parameters are ignored", "key": "period", "value": "latest" }, { "description": "Number of data points to retrieve.\nSupports values in the range from `1` to `1000`.\nDefault `10` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "10" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "The date from which the data is requested. The date format is `YYYY-MM-DD`.", "key": "start_date", "value": "" }, { "description": "The date to which the data is requested. The date format is `YYYY-MM-DD`.", "key": "end_date", "value": "" }, { "description": "The number of decimal places in the response data. Should be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ecebdf3b-ecc4-4360-b3bd-26bf31232f90" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a41c1f66-95d9-4273-a0d4-79c5735abd30" } ], "id": "3e77e452-998e-4936-8b42-a4c37b6e8a8e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3e77e452-998e-4936-8b42-a4c37b6e8a8e" }, { "name": "earnings_calendar", "item": [ { "name": "Earnings calendar", "id": "c7e7ed8b-21e4-46fb-8f04-6195c2f64ce0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] }, "description": "The earnings calendar endpoint provides a schedule of company earnings announcements for a specified date range. By default, it returns earnings data for the current day. Users can customize the date range using the `start_date` and `end_date` parameters to retrieve earnings information for specific periods. This endpoint is useful for tracking upcoming earnings reports and planning around key financial announcements." }, "response": [ { "id": "1025f77b-cdc1-4f4e-bec3-8342d85049a4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"earnings\": {\n \"adipisicing9\": [\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"country\": \"\",\n \"time\": \"\",\n \"eps_estimate\": \"\",\n \"eps_actual\": \"\",\n \"difference\": \"\",\n \"surprise_prc\": \"\"\n },\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"country\": \"\",\n \"time\": \"\",\n \"eps_estimate\": \"\",\n \"eps_actual\": \"\",\n \"difference\": \"\",\n \"surprise_prc\": \"\"\n }\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1025f77b-cdc1-4f4e-bec3-8342d85049a4" }, { "id": "329ed599-79a4-4135-a93c-ae08fe63ba86", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-329ed599-79a4-4135-a93c-ae08fe63ba86" }, { "id": "02dbf05b-98e0-4e27-851d-a003a057ca20", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-02dbf05b-98e0-4e27-851d-a003a057ca20" }, { "id": "2ece0b28-ab1d-487f-9bc0-b110a6e24844", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2ece0b28-ab1d-487f-9bc0-b110a6e24844" }, { "id": "8a5c5096-46ac-4bd7-8bb4-2f5860272c76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8a5c5096-46ac-4bd7-8bb4-2f5860272c76" }, { "id": "20d29b75-cae5-4f19-a97c-f33e8a9d87e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-20d29b75-cae5-4f19-a97c-f33e8a9d87e8" }, { "id": "896cdde0-a207-409a-83a6-012eb2551ac5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-896cdde0-a207-409a-83a6-012eb2551ac5" }, { "id": "1b289416-c3f1-4182-83a5-7b96484463c0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_calendar?exchange=&mic_code=&country=&format=JSON&delimiter=;&start_date=&end_date=&dp=2", "host": [ "{{baseUrl}}" ], "path": [ "earnings_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Can be used separately and together with end_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "start_date", "value": "" }, { "description": "Can be used separately and together with start_date.\nFormat `2006-01-02` or `2006-01-02T15:04:05`", "key": "end_date", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "2" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1b289416-c3f1-4182-83a5-7b96484463c0" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c7e7ed8b-21e4-46fb-8f04-6195c2f64ce0" } ], "id": "a347e0f8-f831-498c-87ea-b37df88d8860", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a347e0f8-f831-498c-87ea-b37df88d8860" }, { "name": "earnings_estimate", "item": [ { "name": "Earnings estimate", "id": "9fe2c66f-ec69-4bfd-8b89-97743f686744", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The earnings estimate endpoint provides access to analysts' projected earnings per share (EPS) for a specific company, covering both upcoming quarterly and annual periods. This data is crucial for users who need to track and compare expected financial performance across different timeframes, aiding in the evaluation of a company's future profitability." }, "response": [ { "id": "3a886f6f-f0be-4581-b50c-c1411822cc08", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"earnings_estimate\": [\n {\n \"date\": \"\",\n \"period\": \"\",\n \"number_of_analysts\": \"\",\n \"avg_estimate\": \"\",\n \"low_estimate\": \"\",\n \"high_estimate\": \"\",\n \"year_ago_eps\": \"\"\n },\n {\n \"date\": \"\",\n \"period\": \"\",\n \"number_of_analysts\": \"\",\n \"avg_estimate\": \"\",\n \"low_estimate\": \"\",\n \"high_estimate\": \"\",\n \"year_ago_eps\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3a886f6f-f0be-4581-b50c-c1411822cc08" }, { "id": "dd86c679-ac90-4a3a-887b-55e7738a053a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd86c679-ac90-4a3a-887b-55e7738a053a" }, { "id": "844eb92e-cc70-4718-859c-54a8cd72aed3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-844eb92e-cc70-4718-859c-54a8cd72aed3" }, { "id": "fc01405c-bf10-42f8-9909-feea2d3cc0c7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc01405c-bf10-42f8-9909-feea2d3cc0c7" }, { "id": "2226d841-5f82-454f-9ce3-5f5894daea1e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2226d841-5f82-454f-9ce3-5f5894daea1e" }, { "id": "bc9ee705-b7ba-4a53-b7bd-52c3540d24eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bc9ee705-b7ba-4a53-b7bd-52c3540d24eb" }, { "id": "d331ccb5-f1b8-4d87-90e9-ac96adfbe41d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d331ccb5-f1b8-4d87-90e9-ac96adfbe41d" }, { "id": "9cb598d5-ff91-4451-a06d-fbfaae3170f7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/earnings_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "earnings_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9cb598d5-ff91-4451-a06d-fbfaae3170f7" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9fe2c66f-ec69-4bfd-8b89-97743f686744" } ], "id": "1da84b16-d51d-4af5-80db-8001645c4e75", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1da84b16-d51d-4af5-80db-8001645c4e75" }, { "name": "edgar_filings", "item": [ { "name": "archive", "item": [ { "name": "EDGAR fillings", "id": "ef33a463-a0aa-427b-8ae7-c12f4fca814e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] }, "description": "The EDGAR fillings endpoint provides access to a comprehensive collection of financial documents submitted to the SEC, including real-time and historical forms, filings, and exhibits. Users can retrieve detailed information about company disclosures, financial statements, and regulatory submissions, enabling them to access essential compliance and financial data directly from the SEC's EDGAR system." }, "response": [ { "id": "70365fac-391a-4e90-865d-0e4a74bfb9b0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"values\": [\n {\n \"cik\": \"\",\n \"filed_at\": \"\",\n \"filing_url\": \"\",\n \"form_type\": \"\",\n \"ticker\": [\n \"\",\n \"\"\n ],\n \"files\": [\n {\n \"name\": \"\",\n \"type\": \"\",\n \"url\": \"\",\n \"size\": \"\"\n },\n {\n \"name\": \"\",\n \"type\": \"\",\n \"url\": \"\",\n \"size\": \"\"\n }\n ]\n },\n {\n \"cik\": \"\",\n \"filed_at\": \"\",\n \"filing_url\": \"\",\n \"form_type\": \"\",\n \"ticker\": [\n \"\",\n \"\"\n ],\n \"files\": [\n {\n \"name\": \"\",\n \"type\": \"\",\n \"url\": \"\",\n \"size\": \"\"\n },\n {\n \"name\": \"\",\n \"type\": \"\",\n \"url\": \"\",\n \"size\": \"\"\n }\n ]\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-70365fac-391a-4e90-865d-0e4a74bfb9b0" }, { "id": "296bbc9c-e5db-4585-ae58-5a830ce628ad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-296bbc9c-e5db-4585-ae58-5a830ce628ad" }, { "id": "a6ed6f63-db66-42ee-aa5a-eee1460040f4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a6ed6f63-db66-42ee-aa5a-eee1460040f4" }, { "id": "255d46a4-2e2d-4a95-92e5-9d482f241280", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-255d46a4-2e2d-4a95-92e5-9d482f241280" }, { "id": "c8545bcd-865a-4c0a-aaca-00463c2b7f63", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8545bcd-865a-4c0a-aaca-00463c2b7f63" }, { "id": "b17ad7f9-bbcc-4073-be6c-1b73ba61a41e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b17ad7f9-bbcc-4073-be6c-1b73ba61a41e" }, { "id": "ab906149-dcfe-4b46-aaa9-e5dde4ede120", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab906149-dcfe-4b46-aaa9-e5dde4ede120" }, { "id": "259b4739-203a-4f81-85d2-79a4d4b3a4d9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/edgar_filings/archive?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&form_type=&filled_from=&filled_to=&page=1&page_size=10", "host": [ "{{baseUrl}}" ], "path": [ "edgar_filings", "archive" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by form types, example `8-K`, `EX-1.1`", "key": "form_type", "value": "" }, { "description": "Filter by filled date from", "key": "filled_from", "value": "" }, { "description": "Filter by filled date to", "key": "filled_to", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "page_size", "value": "10" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-259b4739-203a-4f81-85d2-79a4d4b3a4d9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ef33a463-a0aa-427b-8ae7-c12f4fca814e" } ], "id": "2908b2d1-795d-41ac-b493-edf9e028c6c6", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2908b2d1-795d-41ac-b493-edf9e028c6c6" } ], "id": "d4e8cd09-e134-4d9c-9711-a5ea65f45975", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d4e8cd09-e134-4d9c-9711-a5ea65f45975" }, { "name": "ema", "item": [ { "name": "Exponential moving average", "id": "e50c486d-ece8-44ad-9271-14f532cef75f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Exponential Moving Average (EMA) endpoint calculates the EMA for a specified financial instrument over a given time period. It returns a time series of EMA values, which highlight recent price trends by weighting recent data more heavily. This is useful for traders seeking to identify trend directions and potential trade opportunities based on recent price movements." }, "response": [ { "id": "3967d261-6577-4c61-9734-1f7002218d92", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3967d261-6577-4c61-9734-1f7002218d92" }, { "id": "83019b03-1ccc-475c-afec-ad7c4058f45b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-83019b03-1ccc-475c-afec-ad7c4058f45b" }, { "id": "27c3a305-2067-49c0-955c-62e5606c200f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27c3a305-2067-49c0-955c-62e5606c200f" }, { "id": "e21a8f80-cbfc-4eba-911b-f59140d709e6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e21a8f80-cbfc-4eba-911b-f59140d709e6" }, { "id": "47965392-746c-4436-bb9c-ab1cb2fe35e9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-47965392-746c-4436-bb9c-ab1cb2fe35e9" }, { "id": "4c1c7099-8d29-418f-9e7d-6e2d4777e10d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c1c7099-8d29-418f-9e7d-6e2d4777e10d" }, { "id": "aa73f672-ca66-4a87-bee4-8cbfcf4b24b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa73f672-ca66-4a87-bee4-8cbfcf4b24b9" }, { "id": "352cd455-4740-4382-9040-cc11bc03c894", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-352cd455-4740-4382-9040-cc11bc03c894" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e50c486d-ece8-44ad-9271-14f532cef75f" } ], "id": "c550668b-ffe8-43ba-b47d-17a24edf352b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c550668b-ffe8-43ba-b47d-17a24edf352b" }, { "name": "eod", "item": [ { "name": "End of day price", "id": "d70931aa-1ba1-41ea-bc1c-913fea0aebe3", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] }, "description": "The End of Day (EOD) Prices endpoint provides the closing price and other relevant metadata for a financial instrument at the end of a trading day. This endpoint is useful for retrieving daily historical data for stocks, ETFs, or other securities, allowing users to track performance over time and compare daily market movements." }, "response": [ { "id": "50958204-44f7-4894-98e6-b37daa3f242c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"close\": \"\",\n \"datetime\": \"\",\n \"exchange\": \"\",\n \"symbol\": \"\",\n \"mic_code\": \"\",\n \"currency\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-50958204-44f7-4894-98e6-b37daa3f242c" }, { "id": "8ac7a60c-c22f-4268-9ebe-8e4466feb28c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8ac7a60c-c22f-4268-9ebe-8e4466feb28c" }, { "id": "6e91da3c-dee3-4613-ae52-6adf892f4111", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e91da3c-dee3-4613-ae52-6adf892f4111" }, { "id": "f7e46805-073d-4c85-9b67-2280b52709c9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f7e46805-073d-4c85-9b67-2280b52709c9" }, { "id": "4a42e783-42a8-41d9-83d4-9945e21efe7b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4a42e783-42a8-41d9-83d4-9945e21efe7b" }, { "id": "2bd654af-7b20-4288-85b7-5dc7a59bcd4f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2bd654af-7b20-4288-85b7-5dc7a59bcd4f" }, { "id": "d9ad0444-26b8-46fb-bfbf-f6fa8e7d65dc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d9ad0444-26b8-46fb-bfbf-f6fa8e7d65dc" }, { "id": "e2ff1bbe-5700-4ee7-b999-65478b636ab9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eod?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&date=&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "eod" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "If not null, then return data from a specific date", "key": "date", "value": "" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e2ff1bbe-5700-4ee7-b999-65478b636ab9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d70931aa-1ba1-41ea-bc1c-913fea0aebe3" } ], "id": "1382dea0-7e11-4571-814f-1ea68f1c3928", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1382dea0-7e11-4571-814f-1ea68f1c3928" }, { "name": "eps_revisions", "item": [ { "name": "EPS revisions", "id": "d742fe9d-5bad-4506-a2bb-18b70caa0f35", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The EPS revisions endpoint provides updated analyst forecasts for a company's earnings per share (EPS) on both a quarterly and annual basis. It delivers data on how these EPS predictions have changed over the past week and month, allowing users to track recent adjustments in analyst expectations. This endpoint is useful for monitoring shifts in market sentiment regarding a company's financial performance." }, "response": [ { "id": "8ac69143-f5a0-4b00-82fb-0d3ebad4b439", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"eps_revision\": [\n {\n \"date\": \"\",\n \"period\": \"\",\n \"up_last_week\": \"\",\n \"up_last_month\": \"\",\n \"down_last_week\": \"\",\n \"down_last_month\": \"\"\n },\n {\n \"date\": \"\",\n \"period\": \"\",\n \"up_last_week\": \"\",\n \"up_last_month\": \"\",\n \"down_last_week\": \"\",\n \"down_last_month\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8ac69143-f5a0-4b00-82fb-0d3ebad4b439" }, { "id": "b5760109-5758-4eb5-ac33-4e526a4d4cc7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b5760109-5758-4eb5-ac33-4e526a4d4cc7" }, { "id": "482c1e0c-ec06-484c-887a-26e8774b3728", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-482c1e0c-ec06-484c-887a-26e8774b3728" }, { "id": "f20c1f54-a9d1-426c-9a70-686e3915368f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f20c1f54-a9d1-426c-9a70-686e3915368f" }, { "id": "063607fa-db51-437f-ac36-44b22e4ef684", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-063607fa-db51-437f-ac36-44b22e4ef684" }, { "id": "633271b6-6a38-4d74-bb75-452b59d687ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-633271b6-6a38-4d74-bb75-452b59d687ce" }, { "id": "ad3da652-10b6-40b3-a946-bea78c4ea473", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ad3da652-10b6-40b3-a946-bea78c4ea473" }, { "id": "c5e2367c-3fea-41ba-b3ab-7d0ec8b22dc6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_revisions?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_revisions" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c5e2367c-3fea-41ba-b3ab-7d0ec8b22dc6" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d742fe9d-5bad-4506-a2bb-18b70caa0f35" } ], "id": "00aef3d4-ea4e-43c1-9eec-8ef1bea72b3d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-00aef3d4-ea4e-43c1-9eec-8ef1bea72b3d" }, { "name": "eps_trend", "item": [ { "name": "EPS trend", "id": "d45a746d-4b30-404d-b055-4d39078ee740", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The EPS trend endpoint provides detailed historical data on Earnings Per Share (EPS) trends over specified periods. It returns a comprehensive breakdown of estimated EPS changes, allowing users to track and analyze the progression of a company's earnings performance over time. This endpoint is ideal for users seeking to understand historical EPS fluctuations and assess financial growth patterns." }, "response": [ { "id": "9c389125-70da-4cab-a605-65fc927dfa3b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"eps_trend\": [\n {\n \"date\": \"\",\n \"period\": \"\",\n \"current_estimate\": \"\",\n \"7_days_ago\": \"\",\n \"30_days_ago\": \"\",\n \"60_days_ago\": \"\",\n \"90_days_ago\": \"\"\n },\n {\n \"date\": \"\",\n \"period\": \"\",\n \"current_estimate\": \"\",\n \"7_days_ago\": \"\",\n \"30_days_ago\": \"\",\n \"60_days_ago\": \"\",\n \"90_days_ago\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c389125-70da-4cab-a605-65fc927dfa3b" }, { "id": "ef59063a-0355-41ce-bb71-41c8afcaedf3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ef59063a-0355-41ce-bb71-41c8afcaedf3" }, { "id": "4ab7f197-6ff5-4ba4-be3f-d9916b6bdf85", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ab7f197-6ff5-4ba4-be3f-d9916b6bdf85" }, { "id": "9c468ba4-3814-491f-afe5-16953a258a82", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c468ba4-3814-491f-afe5-16953a258a82" }, { "id": "580d6b01-6d05-4ac2-89d8-38e169475fa5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-580d6b01-6d05-4ac2-89d8-38e169475fa5" }, { "id": "d77c1084-efe7-481e-a725-8652251c8e77", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d77c1084-efe7-481e-a725-8652251c8e77" }, { "id": "dfc44e5d-8d3a-467c-b889-c05e472fcf19", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dfc44e5d-8d3a-467c-b889-c05e472fcf19" }, { "id": "cee37687-8e00-4462-9afb-1a042301aece", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/eps_trend?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "eps_trend" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cee37687-8e00-4462-9afb-1a042301aece" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d45a746d-4b30-404d-b055-4d39078ee740" } ], "id": "755a5c92-b3d1-4794-b0f6-8e866cb1a223", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-755a5c92-b3d1-4794-b0f6-8e866cb1a223" }, { "name": "etfs", "item": [ { "name": "family", "item": [ { "name": "ETFs families", "id": "71c659ca-05ae-46ff-bf8d-60339cebe9c7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] }, "description": "Retrieve a comprehensive list of exchange-traded fund (ETF) families, providing users with detailed information on various ETF groups available in the market. This endpoint is ideal for users looking to explore different ETF categories, compare offerings, or integrate ETF family data into their financial applications." }, "response": [ { "id": "07da7465-73be-4634-876a-7db45dea63f1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"in49\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-07da7465-73be-4634-876a-7db45dea63f1" }, { "id": "9338d3b0-9472-4b15-9b83-4a8292f0fd68", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9338d3b0-9472-4b15-9b83-4a8292f0fd68" }, { "id": "635a258b-de81-438c-b6c6-d074fae9f32f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-635a258b-de81-438c-b6c6-d074fae9f32f" }, { "id": "f7a4d904-978c-4f3e-ab1c-bc3af24bf49d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f7a4d904-978c-4f3e-ab1c-bc3af24bf49d" }, { "id": "2329382a-d0c1-4cdb-a224-033184f8cb25", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2329382a-d0c1-4cdb-a224-033184f8cb25" }, { "id": "58e699a6-762a-4a41-ab2b-5f9855b1aaa6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58e699a6-762a-4a41-ab2b-5f9855b1aaa6" }, { "id": "5a783010-61ad-4f90-aa84-771ee8802611", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5a783010-61ad-4f90-aa84-771ee8802611" }, { "id": "d2f627d6-5b03-4298-8bff-51804bd2d0d9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/family?country=&fund_family=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "family" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d2f627d6-5b03-4298-8bff-51804bd2d0d9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-71c659ca-05ae-46ff-bf8d-60339cebe9c7" } ], "id": "fad6ec6b-bc5f-427b-9801-146f9af2c7d0", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fad6ec6b-bc5f-427b-9801-146f9af2c7d0" }, { "name": "list", "item": [ { "name": "ETFs directory", "id": "a5c31f67-de71-4ff8-b1db-00545e957133", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] }, "description": "The ETFs directory endpoint provides a daily updated list of exchange-traded funds, sorted by total assets in descending order. This endpoint is useful for retrieving comprehensive ETF data, including fund names and asset values, to assist users in quickly identifying the ETFs available." }, "response": [ { "id": "1cc579b9-73de-4fc1-aafa-1b716945efd0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"count\": \"\",\n \"list\": [\n {\n \"country\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n {\n \"country\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1cc579b9-73de-4fc1-aafa-1b716945efd0" }, { "id": "ea268ca3-4f75-4b99-b0fc-77b11a852052", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ea268ca3-4f75-4b99-b0fc-77b11a852052" }, { "id": "7c6b5596-deeb-4546-aa11-0cc1605ba8d8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c6b5596-deeb-4546-aa11-0cc1605ba8d8" }, { "id": "7fcbb3de-825b-4285-bff2-e49c4b671cd3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7fcbb3de-825b-4285-bff2-e49c4b671cd3" }, { "id": "91f857a5-519e-4847-a909-2d47a6057425", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91f857a5-519e-4847-a909-2d47a6057425" }, { "id": "d0f35693-7a9b-42d4-a473-4c661d6b97bb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d0f35693-7a9b-42d4-a473-4c661d6b97bb" }, { "id": "032981ac-de67-4265-b538-3139647c541a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-032981ac-de67-4265-b538-3139647c541a" }, { "id": "c5e653c2-80a6-45a7-9616-5c23d5511af2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&format=JSON&delimiter=;&dp=5&page=1&outputsize=50", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "50" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c5e653c2-80a6-45a7-9616-5c23d5511af2" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a5c31f67-de71-4ff8-b1db-00545e957133" } ], "id": "b9670b07-0bc0-4cb8-a426-432159741ccf", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b9670b07-0bc0-4cb8-a426-432159741ccf" }, { "name": "type", "item": [ { "name": "ETFs types", "id": "12cf337a-13ce-4cf0-8f4e-42a71c2d362b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] }, "description": "The ETFs Types endpoint provides a concise list of ETF categories by market (e.g., Singapore, United States), including types like \"Equity Precious Metals\" and \"Large Blend.\" It supports targeted investment research and portfolio diversification." }, "response": [ { "id": "0e0f710d-8bff-4058-b8dd-f14af0c01e87", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"enim0\": [\n \"\",\n \"\"\n ],\n \"voluptate_e1b\": [\n \"\",\n \"\"\n ],\n \"aliquad\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0e0f710d-8bff-4058-b8dd-f14af0c01e87" }, { "id": "88a810cd-9dca-4d8c-9ba0-7e3b92c103b7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-88a810cd-9dca-4d8c-9ba0-7e3b92c103b7" }, { "id": "d31b3758-a00f-4f31-85ca-cd801ae896b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d31b3758-a00f-4f31-85ca-cd801ae896b2" }, { "id": "ab7ece4f-bd02-4bd5-9b40-c8d9a44df819", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab7ece4f-bd02-4bd5-9b40-c8d9a44df819" }, { "id": "e294ef7c-c573-459d-b45c-bcd605c7c935", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e294ef7c-c573-459d-b45c-bcd605c7c935" }, { "id": "ca94d8ab-b72a-4bd6-a292-01f991520086", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca94d8ab-b72a-4bd6-a292-01f991520086" }, { "id": "98f9eb51-5263-44e4-85ad-b9c9149c82ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-98f9eb51-5263-44e4-85ad-b9c9149c82ce" }, { "id": "484d6ae1-3bc4-4b18-b7cc-34c098a728ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/type?country=&fund_type=", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "type" ], "query": [ { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-484d6ae1-3bc4-4b18-b7cc-34c098a728ef" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-12cf337a-13ce-4cf0-8f4e-42a71c2d362b" } ], "id": "5427989e-dc77-4764-9e9e-c3f1f349298f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-5427989e-dc77-4764-9e9e-c3f1f349298f" }, { "name": "world", "item": [ { "name": "composition", "item": [ { "name": "Composition", "id": "3feec07b-bed4-4a92-80ab-6efc710108f1", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The ETFs composition endpoint provides detailed information about the composition of global Exchange-Traded Funds. It returns data on the sectors included in the ETF, specific holding details, and the weighted exposure of each component. This endpoint is useful for users who need to understand the specific makeup and sector distribution of an ETF portfolio." }, "response": [ { "id": "4cc32d35-3fd9-4c22-b24a-6b9586fc4961", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"etf\": {\n \"composition\": {\n \"major_market_sectors\": [\n {\n \"sector\": \"\",\n \"weight\": \"\"\n },\n {\n \"sector\": \"\",\n \"weight\": \"\"\n }\n ],\n \"country_allocation\": [\n {\n \"country\": \"\",\n \"allocation\": \"\"\n },\n {\n \"country\": \"\",\n \"allocation\": \"\"\n }\n ],\n \"asset_allocation\": {\n \"cash\": \"\",\n \"stocks\": \"\",\n \"preferred_stocks\": \"\",\n \"convertables\": \"\",\n \"bonds\": \"\",\n \"others\": \"\"\n },\n \"top_holdings\": [\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n },\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n }\n ],\n \"bond_breakdown\": {\n \"average_maturity\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"average_duration\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"credit_quality\": [\n {\n \"grade\": \"\",\n \"weight\": \"\"\n },\n {\n \"grade\": \"\",\n \"weight\": \"\"\n }\n ]\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4cc32d35-3fd9-4c22-b24a-6b9586fc4961" }, { "id": "33016b61-f7b1-4bb7-a4f2-8895b041308a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-33016b61-f7b1-4bb7-a4f2-8895b041308a" }, { "id": "1abf660c-5664-47d9-bf4a-b6b284831d63", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1abf660c-5664-47d9-bf4a-b6b284831d63" }, { "id": "cc9b4f9c-cde2-4a97-aac8-3eadbde45d06", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cc9b4f9c-cde2-4a97-aac8-3eadbde45d06" }, { "id": "9c749eac-71fa-4640-97b2-8bbed116261f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c749eac-71fa-4640-97b2-8bbed116261f" }, { "id": "e685c620-ca79-41e5-a2ff-fd51c17079ab", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e685c620-ca79-41e5-a2ff-fd51c17079ab" }, { "id": "32b1b199-f5b0-4a93-83cf-a45e92def98b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-32b1b199-f5b0-4a93-83cf-a45e92def98b" }, { "id": "eb106782-9e4e-4833-82fb-a970101fa7aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "composition" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eb106782-9e4e-4833-82fb-a970101fa7aa" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3feec07b-bed4-4a92-80ab-6efc710108f1" } ], "id": "20a9de14-8d92-4cda-bebc-4a9f6deb1a6e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-20a9de14-8d92-4cda-bebc-4a9f6deb1a6e" }, { "name": "performance", "item": [ { "name": "Performance", "id": "53d16a29-767d-497d-8e83-0a240a15f2f9", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The ETFs performance endpoint provides comprehensive performance data for exchange-traded funds globally. It returns detailed metrics such as trailing returns and annual returns, enabling users to evaluate the historical performance of various ETFs. This endpoint is ideal for users looking to compare ETF performance over different time periods and assess their investment potential." }, "response": [ { "id": "f961d97a-37a3-409a-9c5c-f648f941b6a5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"etf\": {\n \"performance\": {\n \"trailing_returns\": [\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ],\n \"annual_total_returns\": [\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ]\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f961d97a-37a3-409a-9c5c-f648f941b6a5" }, { "id": "b6aa3c53-7a19-4d85-bb07-90baf26db81d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b6aa3c53-7a19-4d85-bb07-90baf26db81d" }, { "id": "4a9a012c-24e0-4fb8-b98a-dfc72eb06c87", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4a9a012c-24e0-4fb8-b98a-dfc72eb06c87" }, { "id": "0813aba6-63cb-4a80-ae22-5bfe40f22fcd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0813aba6-63cb-4a80-ae22-5bfe40f22fcd" }, { "id": "6a7b1315-7b72-48b9-9839-2d1980a16479", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6a7b1315-7b72-48b9-9839-2d1980a16479" }, { "id": "6b3f4b06-3212-43c7-baaa-42e0071b8b47", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6b3f4b06-3212-43c7-baaa-42e0071b8b47" }, { "id": "b3087523-96e4-498e-9c95-841548c46dbb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b3087523-96e4-498e-9c95-841548c46dbb" }, { "id": "91c8be65-cfe4-4c9d-b70b-5725ed4fff0e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "performance" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91c8be65-cfe4-4c9d-b70b-5725ed4fff0e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-53d16a29-767d-497d-8e83-0a240a15f2f9" } ], "id": "bb2cea30-75f2-43d0-8f24-4ad1bdcfcc56", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-bb2cea30-75f2-43d0-8f24-4ad1bdcfcc56" }, { "name": "risk", "item": [ { "name": "Risk", "id": "d85f500e-7acc-40da-bb45-7f7561b0c76a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The ETFs risk endpoint provides essential risk metrics for global Exchange Traded Funds. It returns data such as volatility, beta, and other risk-related indicators, enabling users to assess the potential risk associated with investing in various ETFs worldwide." }, "response": [ { "id": "49b24cc7-60ca-4ec2-8b60-6d327fa147f0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"etf\": {\n \"risk\": {\n \"volatility_measures\": [\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n },\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n }\n ],\n \"valuation_metrics\": {\n \"price_to_earnings\": \"\",\n \"price_to_book\": \"\",\n \"price_to_sales\": \"\",\n \"price_to_cashflow\": \"\"\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-49b24cc7-60ca-4ec2-8b60-6d327fa147f0" }, { "id": "a710dea7-9584-424c-b86c-1a0f664b9b8a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a710dea7-9584-424c-b86c-1a0f664b9b8a" }, { "id": "2074d2a5-6a14-48d9-9225-38138134f271", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2074d2a5-6a14-48d9-9225-38138134f271" }, { "id": "16474fd7-23d0-4b15-b5be-c97401563073", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-16474fd7-23d0-4b15-b5be-c97401563073" }, { "id": "665609db-b545-4617-a479-4f214dc20b23", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-665609db-b545-4617-a479-4f214dc20b23" }, { "id": "869c89cd-500a-4b29-881d-9201b1583138", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-869c89cd-500a-4b29-881d-9201b1583138" }, { "id": "45994ff3-2dae-473d-9fb4-3ddca3542c07", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-45994ff3-2dae-473d-9fb4-3ddca3542c07" }, { "id": "d8889358-d152-46fe-8484-c80f88f48822", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "risk" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d8889358-d152-46fe-8484-c80f88f48822" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d85f500e-7acc-40da-bb45-7f7561b0c76a" } ], "id": "e2440dfe-ed6b-4c4f-b3cc-2a337f157736", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e2440dfe-ed6b-4c4f-b3cc-2a337f157736" }, { "name": "summary", "item": [ { "name": "Summary", "id": "d72aa24f-c2b8-4a7f-b3c2-5cfe3c731499", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The ETFs summary endpoint provides a concise overview of global Exchange-Traded Funds. It returns key data points such as ETF names, symbols, and current market values, enabling users to quickly assess the performance and status of various international ETFs. This summary is ideal for users who need a snapshot of the global ETF landscape without delving into detailed analysis." }, "response": [ { "id": "41357e99-113f-4d29-9cec-7fee309a0730", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"etf\": {\n \"summary\": {\n \"name\": \"\",\n \"symbol\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"currency\": \"\",\n \"share_class_inception_date\": \"\",\n \"ytd_return\": \"\",\n \"expense_ratio_net\": \"\",\n \"yield\": \"\",\n \"nav\": \"\",\n \"last_price\": \"\",\n \"turnover_rate\": \"\",\n \"net_assets\": \"\",\n \"overview\": \"\"\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-41357e99-113f-4d29-9cec-7fee309a0730" }, { "id": "ded2d26b-31a0-465f-9b7c-d05904331706", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ded2d26b-31a0-465f-9b7c-d05904331706" }, { "id": "5703aa58-9a79-475c-ab18-76f19951b211", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5703aa58-9a79-475c-ab18-76f19951b211" }, { "id": "3f4825dd-34ef-4dfe-8b07-156fb969e99e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f4825dd-34ef-4dfe-8b07-156fb969e99e" }, { "id": "5dac981e-59a8-4e0a-b5d2-3b2360a28275", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5dac981e-59a8-4e0a-b5d2-3b2360a28275" }, { "id": "99901915-4d83-4435-83fc-0d25f34b1b10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-99901915-4d83-4435-83fc-0d25f34b1b10" }, { "id": "e5dc1a32-2555-42f7-a3b9-d695a5fdf1ec", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e5dc1a32-2555-42f7-a3b9-d695a5fdf1ec" }, { "id": "5fab01a1-c356-4974-a236-a3c8a1cdfed1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world", "summary" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5fab01a1-c356-4974-a236-a3c8a1cdfed1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d72aa24f-c2b8-4a7f-b3c2-5cfe3c731499" } ], "id": "2760b9fc-d4bb-425f-b2df-28a5d9a1c811", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2760b9fc-d4bb-425f-b2df-28a5d9a1c811" }, { "name": "ETF full data", "id": "62e12373-7f09-44e8-8f61-124a67646dd3", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The ETF full data endpoint provides detailed information about global Exchange-Traded Funds. It returns comprehensive data, including a summary, performance metrics, risk assessment, and composition details. This endpoint is ideal for users seeking an in-depth analysis of worldwide ETFs, enabling them to access key financial metrics and portfolio breakdowns." }, "response": [ { "id": "4156539f-e1c3-47c8-a2be-573feb3ef12e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"etf\": {\n \"summary\": {\n \"name\": \"\",\n \"symbol\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"currency\": \"\",\n \"share_class_inception_date\": \"\",\n \"ytd_return\": \"\",\n \"expense_ratio_net\": \"\",\n \"yield\": \"\",\n \"nav\": \"\",\n \"last_price\": \"\",\n \"turnover_rate\": \"\",\n \"net_assets\": \"\",\n \"overview\": \"\"\n },\n \"performance\": {\n \"trailing_returns\": [\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ],\n \"annual_total_returns\": [\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ]\n },\n \"risk\": {\n \"volatility_measures\": [\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n },\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n }\n ],\n \"valuation_metrics\": {\n \"price_to_earnings\": \"\",\n \"price_to_book\": \"\",\n \"price_to_sales\": \"\",\n \"price_to_cashflow\": \"\"\n }\n },\n \"composition\": {\n \"major_market_sectors\": [\n {\n \"sector\": \"\",\n \"weight\": \"\"\n },\n {\n \"sector\": \"\",\n \"weight\": \"\"\n }\n ],\n \"country_allocation\": [\n {\n \"country\": \"\",\n \"allocation\": \"\"\n },\n {\n \"country\": \"\",\n \"allocation\": \"\"\n }\n ],\n \"asset_allocation\": {\n \"cash\": \"\",\n \"stocks\": \"\",\n \"preferred_stocks\": \"\",\n \"convertables\": \"\",\n \"bonds\": \"\",\n \"others\": \"\"\n },\n \"top_holdings\": [\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n },\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n }\n ],\n \"bond_breakdown\": {\n \"average_maturity\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"average_duration\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"credit_quality\": [\n {\n \"grade\": \"\",\n \"weight\": \"\"\n },\n {\n \"grade\": \"\",\n \"weight\": \"\"\n }\n ]\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4156539f-e1c3-47c8-a2be-573feb3ef12e" }, { "id": "f9ad2c8a-9059-4bac-b34e-323a6bf05910", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f9ad2c8a-9059-4bac-b34e-323a6bf05910" }, { "id": "211f3d6d-1e14-476a-a4d9-b42cd9baa625", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-211f3d6d-1e14-476a-a4d9-b42cd9baa625" }, { "id": "ee23ae61-7b40-4be5-91ff-1740e7f17f28", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ee23ae61-7b40-4be5-91ff-1740e7f17f28" }, { "id": "45f6510e-d60c-4b0e-bdc7-fde441bafa70", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-45f6510e-d60c-4b0e-bdc7-fde441bafa70" }, { "id": "4d6ee45f-241e-4554-a663-4c1fcb4df0d3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4d6ee45f-241e-4554-a663-4c1fcb4df0d3" }, { "id": "e34d448c-caf7-492e-a48c-42aae622fd2a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e34d448c-caf7-492e-a48c-42aae622fd2a" }, { "id": "ee3446f9-4449-41e8-92e5-0e1151acc995", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "etfs", "world" ], "query": [ { "description": "Symbol ticker of etf", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ee3446f9-4449-41e8-92e5-0e1151acc995" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62e12373-7f09-44e8-8f61-124a67646dd3" } ], "id": "4da6b7c1-25a8-4f0d-aa7a-13a28a095bcb", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-4da6b7c1-25a8-4f0d-aa7a-13a28a095bcb" }, { "name": "ETFs", "id": "8aa371de-fe38-4fe6-b19f-e2f85779487b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] }, "description": "The ETFs endpoint provides a daily updated list of all available Exchange-Traded Funds. It returns an array containing detailed information about each ETF, including its symbol, name, and other relevant identifiers. This endpoint is useful for retrieving a comprehensive catalog of ETFs for portfolio management, investment tracking, or financial analysis." }, "response": [ { "id": "c89108c1-dab7-4200-a33b-2ed8fb2ca7fa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c89108c1-dab7-4200-a33b-2ed8fb2ca7fa" }, { "id": "f5851ef3-fd6d-4b9b-8303-2b565fa170c3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f5851ef3-fd6d-4b9b-8303-2b565fa170c3" }, { "id": "42137d50-0fa5-4f72-abdd-4465f1042243", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-42137d50-0fa5-4f72-abdd-4465f1042243" }, { "id": "385b195f-fc20-4c17-986d-bcbff7b63224", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-385b195f-fc20-4c17-986d-bcbff7b63224" }, { "id": "8d56e7d2-8557-4e1f-9ee9-bc06d3d1321c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8d56e7d2-8557-4e1f-9ee9-bc06d3d1321c" }, { "id": "8a498e63-2249-4515-a961-52c9f841609e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8a498e63-2249-4515-a961-52c9f841609e" }, { "id": "b32ac32b-0cfb-494b-b07e-04b8f1233baf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b32ac32b-0cfb-494b-b07e-04b8f1233baf" }, { "id": "7163ec88-cd5c-42b6-81be-2304bc08b370", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/etfs?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "etfs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7163ec88-cd5c-42b6-81be-2304bc08b370" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8aa371de-fe38-4fe6-b19f-e2f85779487b" } ], "id": "29397e79-bf1a-4a38-9f5e-341ba999099b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-29397e79-bf1a-4a38-9f5e-341ba999099b" }, { "name": "exchange_rate", "item": [ { "name": "Exchange rate", "id": "d5b44aa6-cd66-462e-b116-39778572834e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] }, "description": "The exchange rate endpoint provides real-time exchange rates for specified currency pairs, including both forex and cryptocurrency. It returns the current exchange rate value between two currencies, allowing users to quickly access up-to-date conversion rates for financial transactions or market analysis." }, "response": [ { "id": "80237c0b-f7d9-41c9-9817-df08015a1399", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"rate\": \"\",\n \"symbol\": \"\",\n \"timestamp\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-80237c0b-f7d9-41c9-9817-df08015a1399" }, { "id": "c61425cf-03c3-41e3-9b00-03b9c3a84b40", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c61425cf-03c3-41e3-9b00-03b9c3a84b40" }, { "id": "e275617e-ee93-4ec5-9d51-aa8b98b9b089", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e275617e-ee93-4ec5-9d51-aa8b98b9b089" }, { "id": "d453e400-64a1-435f-839f-2df80aa822bf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d453e400-64a1-435f-839f-2df80aa822bf" }, { "id": "6c2335b1-6536-4f98-8de5-dbf312978234", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6c2335b1-6536-4f98-8de5-dbf312978234" }, { "id": "5d30fea0-93d6-42aa-ae64-9d68ca9c80f2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5d30fea0-93d6-42aa-ae64-9d68ca9c80f2" }, { "id": "19311bb6-6a2c-47f7-818d-d92d29ddfe35", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-19311bb6-6a2c-47f7-818d-d92d29ddfe35" }, { "id": "33243a29-7584-4518-a4b6-9adbeccec0c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_rate?symbol=&date=&format=JSON&delimiter=;&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_rate" ], "query": [ { "description": "(Required) The currency pair you want to request can be either forex or cryptocurrency. Slash(`/`) delimiter is used. E.g. `EUR/USD` or `BTC/ETH` will be correct", "key": "symbol", "value": "" }, { "description": "If not null, will use exchange rate from a specific date or time. Format `2006-01-02` or `2006-01-02T15:04:05`. Is set in the local exchange time zone, use timezone parameter to specify a specific time zone", "key": "date", "value": "" }, { "description": "Value can be `JSON` or `CSV`. Default `JSON`", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the `CSV` file. Default semicolon `;`", "key": "delimiter", "value": ";" }, { "description": "The number of decimal places for the data", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-33243a29-7584-4518-a4b6-9adbeccec0c2" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d5b44aa6-cd66-462e-b116-39778572834e" } ], "id": "c65d6308-d4cc-417c-a265-b4d44536c83a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c65d6308-d4cc-417c-a265-b4d44536c83a" }, { "name": "exchange_schedule", "item": [ { "name": "Exchanges schedule", "id": "3f53498f-1acb-4515-8cc6-1a69e75226ef", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] }, "description": "The exchanges schedule endpoint provides detailed information about various stock exchanges, including their trading hours and operational days. This data is essential for users who need to know when specific exchanges are open for trading, allowing them to plan their activities around the availability of these markets." }, "response": [ { "id": "bb612a5f-8508-48e7-bc3c-f390f10e9531", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"code\": \"\",\n \"country\": \"\",\n \"name\": \"\",\n \"sessions\": [\n {\n \"close_time\": \"\",\n \"open_time\": \"\",\n \"session_name\": \"\",\n \"session_type\": \"\"\n },\n {\n \"close_time\": \"\",\n \"open_time\": \"\",\n \"session_name\": \"\",\n \"session_type\": \"\"\n }\n ],\n \"time_zone\": \"\",\n \"title\": \"\"\n },\n {\n \"code\": \"\",\n \"country\": \"\",\n \"name\": \"\",\n \"sessions\": [\n {\n \"close_time\": \"\",\n \"open_time\": \"\",\n \"session_name\": \"\",\n \"session_type\": \"\"\n },\n {\n \"close_time\": \"\",\n \"open_time\": \"\",\n \"session_name\": \"\",\n \"session_type\": \"\"\n }\n ],\n \"time_zone\": \"\",\n \"title\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bb612a5f-8508-48e7-bc3c-f390f10e9531" }, { "id": "c63e4791-0f92-4712-affb-c559b8e91461", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c63e4791-0f92-4712-affb-c559b8e91461" }, { "id": "ce75ddeb-372e-4a2e-bb62-1226e3c15b96", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce75ddeb-372e-4a2e-bb62-1226e3c15b96" }, { "id": "982442c4-f3c9-4387-aabf-053f7555b005", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-982442c4-f3c9-4387-aabf-053f7555b005" }, { "id": "d3dfbdd6-d03a-46f9-ae02-f03241cd342d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d3dfbdd6-d03a-46f9-ae02-f03241cd342d" }, { "id": "064c6840-4e78-4aef-a202-4177f7630eff", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-064c6840-4e78-4aef-a202-4177f7630eff" }, { "id": "41d3a371-5622-4bd4-b70a-47ab545a60ff", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-41d3a371-5622-4bd4-b70a-47ab545a60ff" }, { "id": "0ed68a6a-ff56-475a-ab12-68bb9f87cda0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchange_schedule?mic_name=&mic_code=&country=&date=", "host": [ "{{baseUrl}}" ], "path": [ "exchange_schedule" ], "query": [ { "description": "Filter by exchange name", "key": "mic_name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "

\nIf a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule.\n

\nThe date can be specified in one of the following formats:\n
    \n
  • An exact date (e.g., 2021-10-27)
  • \n
  • A human-readable keyword: today or yesterday
  • \n
  • A full datetime string in UTC (e.g., 2025-04-11T20:00:00) to retrieve the schedule corresponding to the day in the specified time.
  • \n
\nWhen using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time.\nFor example, 2025-04-11T20:00:00 UTC corresponds to:\n
    \n
  • 2025-04-11 in the America/New_York timezone
  • \n
  • 2025-04-12 in the Australia/Sydney timezone
  • \n
", "key": "date", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0ed68a6a-ff56-475a-ab12-68bb9f87cda0" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f53498f-1acb-4515-8cc6-1a69e75226ef" } ], "id": "01aa55c4-a098-4ddb-8b19-b0deb1091e46", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-01aa55c4-a098-4ddb-8b19-b0deb1091e46" }, { "name": "exchanges", "item": [ { "name": "Exchanges", "id": "4f7ee45a-bc10-4d5c-ac12-3702fd8b4f07", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] }, "description": "The exchanges endpoint provides a comprehensive list of all available equity exchanges. It returns an array containing detailed information about each exchange, such as exchange code, name, country, and timezone. This data is updated daily." }, "response": [ { "id": "89d12989-5ff1-450a-bf63-ece04572ac42", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"code\": \"\",\n \"country\": \"\",\n \"name\": \"\",\n \"timezone\": \"\",\n \"title\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"code\": \"\",\n \"country\": \"\",\n \"name\": \"\",\n \"timezone\": \"\",\n \"title\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-89d12989-5ff1-450a-bf63-ece04572ac42" }, { "id": "d0e1b61f-b10c-43f0-b8c3-8472fe0a5e3a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d0e1b61f-b10c-43f0-b8c3-8472fe0a5e3a" }, { "id": "ceb67fd2-d365-4844-99dc-9ae1d6a2b0e2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ceb67fd2-d365-4844-99dc-9ae1d6a2b0e2" }, { "id": "566dddf7-e915-4b40-9e62-fcbea33cb2b5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-566dddf7-e915-4b40-9e62-fcbea33cb2b5" }, { "id": "ce00e56d-2099-487d-a3ca-2df7dc851a85", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce00e56d-2099-487d-a3ca-2df7dc851a85" }, { "id": "2b80c8c4-c1ea-4f2b-8564-7c5f71fb744d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2b80c8c4-c1ea-4f2b-8564-7c5f71fb744d" }, { "id": "3f330a30-12bc-439a-b7dd-43b570749ee9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f330a30-12bc-439a-b7dd-43b570749ee9" }, { "id": "b4db3822-af7f-4661-9b0c-fa7501c17dae", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exchanges?type=Limited Partnership&name=&code=&country=&format=JSON&delimiter=;&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "exchanges" ], "query": [ { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Filter by exchange name", "key": "name", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b4db3822-af7f-4661-9b0c-fa7501c17dae" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4f7ee45a-bc10-4d5c-ac12-3702fd8b4f07" } ], "id": "184ef377-4300-4727-b4b6-4bb50bae303b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-184ef377-4300-4727-b4b6-4bb50bae303b" }, { "name": "exp", "item": [ { "name": "Exponential", "id": "a3be658f-618d-4673-a04e-92892e243b93", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Exponential (EXP) Indicator endpoint computes the exponential value of a specified input, providing a numerical result that is commonly applied in complex mathematical and financial computations." }, "response": [ { "id": "fd477fd4-3f07-4899-97c6-7c3b209695c6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"exp\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"exp\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fd477fd4-3f07-4899-97c6-7c3b209695c6" }, { "id": "ae055ffe-e761-46fb-8278-e0da3899705a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae055ffe-e761-46fb-8278-e0da3899705a" }, { "id": "0be75de4-7c43-4193-afbc-e50654caa584", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0be75de4-7c43-4193-afbc-e50654caa584" }, { "id": "6d9bed50-a568-4438-a032-3d1474857bef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6d9bed50-a568-4438-a032-3d1474857bef" }, { "id": "251ba248-0c6a-47e5-a6a9-b6bcad102ab5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-251ba248-0c6a-47e5-a6a9-b6bcad102ab5" }, { "id": "9b1e446b-1938-4764-a16d-c8759db5b934", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9b1e446b-1938-4764-a16d-c8759db5b934" }, { "id": "44f0b659-6a8c-4b5d-8c34-db1eb49248c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44f0b659-6a8c-4b5d-8c34-db1eb49248c4" }, { "id": "ad666d9b-71b4-4373-b28c-3a014f9b7eaf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/exp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "exp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ad666d9b-71b4-4373-b28c-3a014f9b7eaf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a3be658f-618d-4673-a04e-92892e243b93" } ], "id": "1ea3e5b5-2296-4249-a2b8-87e252f53c4d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1ea3e5b5-2296-4249-a2b8-87e252f53c4d" }, { "name": "floor", "item": [ { "name": "Floor", "id": "a29fdcc0-a572-4b70-a668-7f9c937f3e60", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Floor (FLOOR) endpoint processes numerical input data by rounding each value down to the nearest integer. It returns a series of adjusted data points that can be used for further calculations or combined with other datasets. This endpoint is useful for users needing to simplify data by removing decimal precision, aiding in scenarios where integer values are required." }, "response": [ { "id": "2a85a0ba-1dcf-4549-9f18-3d888f066062", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"floor\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"floor\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a85a0ba-1dcf-4549-9f18-3d888f066062" }, { "id": "aac9a169-1cf5-476d-9b5e-80a5804d4694", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aac9a169-1cf5-476d-9b5e-80a5804d4694" }, { "id": "7ed89519-1456-4642-bc8b-924e41dbfb27", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ed89519-1456-4642-bc8b-924e41dbfb27" }, { "id": "4ec1f42b-8a81-44c4-a642-35b0cd79e220", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ec1f42b-8a81-44c4-a642-35b0cd79e220" }, { "id": "2ed1bf83-2c93-411b-8b92-905dc42b256a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2ed1bf83-2c93-411b-8b92-905dc42b256a" }, { "id": "23ee6890-c6ce-4264-823d-7a63492c33a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-23ee6890-c6ce-4264-823d-7a63492c33a0" }, { "id": "ebbdd45f-6ffc-4041-9196-e6e624dd02fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ebbdd45f-6ffc-4041-9196-e6e624dd02fc" }, { "id": "09949c51-2376-4feb-bf29-f72856290821", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/floor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "floor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-09949c51-2376-4feb-bf29-f72856290821" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a29fdcc0-a572-4b70-a668-7f9c937f3e60" } ], "id": "808b02d5-6ec4-4a36-8929-e0992edbd536", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-808b02d5-6ec4-4a36-8929-e0992edbd536" }, { "name": "forex_pairs", "item": [ { "name": "Forex pairs", "id": "5ead2689-1635-4fc3-9e02-f3270bf8d9e0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] }, "description": "The forex pairs endpoint provides a comprehensive list of all available foreign exchange currency pairs. It returns an array of forex pairs, which is updated daily." }, "response": [ { "id": "6458b924-987f-46d9-a007-6cab2f2e34e6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"currency_base\": \"\",\n \"currency_group\": \"\",\n \"currency_quote\": \"\",\n \"symbol\": \"\"\n },\n {\n \"currency_base\": \"\",\n \"currency_group\": \"\",\n \"currency_quote\": \"\",\n \"symbol\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6458b924-987f-46d9-a007-6cab2f2e34e6" }, { "id": "1f0a25e1-1d6a-4888-baa4-797316ef8ffb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f0a25e1-1d6a-4888-baa4-797316ef8ffb" }, { "id": "f21aba80-acc3-4bfa-ad70-69b6a8f43308", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f21aba80-acc3-4bfa-ad70-69b6a8f43308" }, { "id": "96d1ab19-09c4-4cc9-8be7-59a9a659e745", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-96d1ab19-09c4-4cc9-8be7-59a9a659e745" }, { "id": "a979d182-a45f-48bb-9ce8-05b122876cb3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a979d182-a45f-48bb-9ce8-05b122876cb3" }, { "id": "15e05de9-8fd4-429c-8e4a-e11ed68c7c83", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-15e05de9-8fd4-429c-8e4a-e11ed68c7c83" }, { "id": "15790f52-65a8-4c02-af4c-70312cf4e739", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-15790f52-65a8-4c02-af4c-70312cf4e739" }, { "id": "80a2d375-0c13-434b-a85c-4fd72d4703dd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/forex_pairs?symbol=¤cy_base=¤cy_quote=&format=JSON&delimiter=;&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "forex_pairs" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by currency base", "key": "currency_base", "value": "" }, { "description": "Filter by currency quote", "key": "currency_quote", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-80a2d375-0c13-434b-a85c-4fd72d4703dd" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ead2689-1635-4fc3-9e02-f3270bf8d9e0" } ], "id": "50d886d6-ccac-4049-803b-71ed29b87f4a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-50d886d6-ccac-4049-803b-71ed29b87f4a" }, { "name": "fund_holders", "item": [ { "name": "Fund holders", "id": "9c6f61af-aa13-4c38-9bac-7443efcaeeab", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The fund holders endpoint provides detailed information about the proportion of a company's stock that is owned by mutual fund holders. It returns data on the number of shares held, the percentage of total shares outstanding, and the names of the mutual funds involved. This endpoint is useful for users looking to understand mutual fund investment in a specific company." }, "response": [ { "id": "4085aaf6-4747-4da2-a479-0100090144d5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"fund_holders\": [\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n },\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4085aaf6-4747-4da2-a479-0100090144d5" }, { "id": "d3580fc6-ac4d-4132-a8b0-8e08d7ef1517", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d3580fc6-ac4d-4132-a8b0-8e08d7ef1517" }, { "id": "648cdb44-47d2-4e74-a387-cf27e64771fa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-648cdb44-47d2-4e74-a387-cf27e64771fa" }, { "id": "a873a28e-59fc-4681-9506-56c261ec1ce7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a873a28e-59fc-4681-9506-56c261ec1ce7" }, { "id": "a5eb99b1-61e4-4572-8bce-a9065b8e1fbb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a5eb99b1-61e4-4572-8bce-a9065b8e1fbb" }, { "id": "6052ae86-5409-4200-aec5-3e99db15d94d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6052ae86-5409-4200-aec5-3e99db15d94d" }, { "id": "6051e271-8d7b-47b9-9b72-ea51e7a85da8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6051e271-8d7b-47b9-9b72-ea51e7a85da8" }, { "id": "9f3abceb-b5ed-46c9-ab4a-ff00deb0b229", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/fund_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "fund_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9f3abceb-b5ed-46c9-ab4a-ff00deb0b229" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c6f61af-aa13-4c38-9bac-7443efcaeeab" } ], "id": "8bfff00b-1ae6-427c-b6e1-4d51b444ac73", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-8bfff00b-1ae6-427c-b6e1-4d51b444ac73" }, { "name": "funds", "item": [ { "name": "Funds", "id": "4c919b86-b97f-4cf7-b8a8-504d6cf6bad2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] }, "description": "The funds endpoint provides a daily updated list of available investment funds. It returns an array containing detailed information about each fund, including identifiers, names, and other relevant attributes." }, "response": [ { "id": "ff635bc3-9560-46cc-927d-289dc0809d8d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"count\": \"\",\n \"list\": [\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff635bc3-9560-46cc-927d-289dc0809d8d" }, { "id": "c033a156-8290-4f5d-aadf-0241d0779646", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c033a156-8290-4f5d-aadf-0241d0779646" }, { "id": "2331a6bd-e065-40c9-9b40-7f655a19ab10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2331a6bd-e065-40c9-9b40-7f655a19ab10" }, { "id": "862c74e5-9e33-455d-8067-938a215160a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-862c74e5-9e33-455d-8067-938a215160a2" }, { "id": "6ca21b4e-8b7d-4823-8347-d936d386752c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6ca21b4e-8b7d-4823-8347-d936d386752c" }, { "id": "81e17781-c426-4207-8be3-b61042cb59fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-81e17781-c426-4207-8be3-b61042cb59fc" }, { "id": "f1e5a5ca-3a10-4d50-b288-0ab0017712d7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f1e5a5ca-3a10-4d50-b288-0ab0017712d7" }, { "id": "d78ddad9-cd01-4b4e-811f-9ca0e416be78", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/funds?symbol=&figi=&isin=&cusip=&cik=&exchange=&country=&format=JSON&delimiter=;&show_plan=false&page=1&outputsize=5000", "host": [ "{{baseUrl}}" ], "path": [ "funds" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "5000" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d78ddad9-cd01-4b4e-811f-9ca0e416be78" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c919b86-b97f-4cf7-b8a8-504d6cf6bad2" } ], "id": "3127144c-f7a4-4b09-b2b3-1932ff8caf92", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3127144c-f7a4-4b09-b2b3-1932ff8caf92" }, { "name": "growth_estimates", "item": [ { "name": "Growth estimates", "id": "f2d566c9-8651-4d7d-b1be-750b3dc4b384", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The growth estimates endpoint provides consensus analyst projections on a company's growth rates over various timeframes. It aggregates and averages estimates from multiple analysts, focusing on key financial metrics such as earnings per share and revenue. This endpoint is useful for obtaining a comprehensive view of expected company performance based on expert analysis." }, "response": [ { "id": "3c8cf949-7249-4498-9b33-275e37ffc6c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\",\n \"growth_estimates\": {\n \"current_quarter\": \"\",\n \"next_quarter\": \"\",\n \"current_year\": \"\",\n \"next_year\": \"\",\n \"next_5_years_pa\": \"\",\n \"past_5_years_pa\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3c8cf949-7249-4498-9b33-275e37ffc6c4" }, { "id": "425b0391-fd21-4283-8b16-911693508856", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-425b0391-fd21-4283-8b16-911693508856" }, { "id": "00de7365-2859-4f77-a2d9-5f9da4754a6e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00de7365-2859-4f77-a2d9-5f9da4754a6e" }, { "id": "27a73df4-5f5b-41b1-9ff6-9aa067599da2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27a73df4-5f5b-41b1-9ff6-9aa067599da2" }, { "id": "a7713e1d-d50f-4f98-bd38-5311346817d9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a7713e1d-d50f-4f98-bd38-5311346817d9" }, { "id": "6329ee0b-b4d2-419c-8616-9335616c0e47", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6329ee0b-b4d2-419c-8616-9335616c0e47" }, { "id": "f2556731-9547-4d44-b3b4-5023e87899d9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f2556731-9547-4d44-b3b4-5023e87899d9" }, { "id": "c036b77d-36a2-4a37-8587-f95838e138d7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/growth_estimates?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "growth_estimates" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c036b77d-36a2-4a37-8587-f95838e138d7" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f2d566c9-8651-4d7d-b1be-750b3dc4b384" } ], "id": "acd2f93a-236c-4954-ad36-b978b16f59d0", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-acd2f93a-236c-4954-ad36-b978b16f59d0" }, { "name": "heikinashicandles", "item": [ { "name": "Heikinashi candles", "id": "b1a18a10-6149-49c3-8487-962af7210854", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The heikinashi candles endpoint provides smoothed candlestick data by averaging price information to reduce market noise. It returns a series of Heikin Ashi candles, which include open, high, low, and close values, making it easier to identify trends and potential reversals in asset prices. This endpoint is useful for traders and analysts seeking a clearer view of market trends without the volatility present in traditional candlestick charts." }, "response": [ { "id": "05db86c3-7217-40a5-bfaf-e4161c76f477", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"heikincloses\": \"\",\n \"heikinhighs\": \"\",\n \"heikinlows\": \"\",\n \"heikinopens\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"heikincloses\": \"\",\n \"heikinhighs\": \"\",\n \"heikinlows\": \"\",\n \"heikinopens\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-05db86c3-7217-40a5-bfaf-e4161c76f477" }, { "id": "a61f0697-9816-419a-b1ea-12b196a52c21", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a61f0697-9816-419a-b1ea-12b196a52c21" }, { "id": "440e7292-4255-486f-a0be-fbd949ce7646", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-440e7292-4255-486f-a0be-fbd949ce7646" }, { "id": "48b82b19-8599-459e-9d6c-126672c27b23", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-48b82b19-8599-459e-9d6c-126672c27b23" }, { "id": "794fd585-707b-4ca2-9419-ba9633d4fa9b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-794fd585-707b-4ca2-9419-ba9633d4fa9b" }, { "id": "c2307de4-d70e-403b-8a37-75ff1b86ba2b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c2307de4-d70e-403b-8a37-75ff1b86ba2b" }, { "id": "ba77160e-3f19-484e-b1a6-300835d8f68b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ba77160e-3f19-484e-b1a6-300835d8f68b" }, { "id": "4bfaf26f-410e-42d9-86bf-1840ed0a33b4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4bfaf26f-410e-42d9-86bf-1840ed0a33b4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b1a18a10-6149-49c3-8487-962af7210854" } ], "id": "7b0e030f-a87e-4025-9d31-db8c5c143b7d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-7b0e030f-a87e-4025-9d31-db8c5c143b7d" }, { "name": "hlc3", "item": [ { "name": "High, low, close average", "id": "3df86771-06b1-4da4-a4b9-d8a1c18ae764", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The High, Low, Close Average (HLC3) endpoint calculates and returns the average of a security's high, low, and close prices for a specified period. This endpoint provides a straightforward metric to assess price trends, helping users quickly identify the average price level of a security over time." }, "response": [ { "id": "3ef83cd6-88e5-4625-a7af-775b09ddb881", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"hlc3\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"hlc3\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3ef83cd6-88e5-4625-a7af-775b09ddb881" }, { "id": "f69f0cbe-21d5-4e49-a906-817ea5cf4001", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f69f0cbe-21d5-4e49-a906-817ea5cf4001" }, { "id": "def15b6e-caa5-4765-84b6-cc7ffdc6fc41", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-def15b6e-caa5-4765-84b6-cc7ffdc6fc41" }, { "id": "d9edb9a8-3d59-4978-a982-9a053acc02f5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d9edb9a8-3d59-4978-a982-9a053acc02f5" }, { "id": "ea86309d-e2f6-462a-a751-80c08e5294b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ea86309d-e2f6-462a-a751-80c08e5294b2" }, { "id": "44f4d01b-89c6-4668-8e37-58e4f0b178d1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44f4d01b-89c6-4668-8e37-58e4f0b178d1" }, { "id": "4a3cb2f0-77f6-4302-948a-2b3d132d8c3c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4a3cb2f0-77f6-4302-948a-2b3d132d8c3c" }, { "id": "b3244437-1535-4fe9-b741-64ade7cf6a0f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/hlc3?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "hlc3" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b3244437-1535-4fe9-b741-64ade7cf6a0f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3df86771-06b1-4da4-a4b9-d8a1c18ae764" } ], "id": "b952e28d-e06e-4512-b5ed-6c44a0908e2e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b952e28d-e06e-4512-b5ed-6c44a0908e2e" }, { "name": "ht_dcperiod", "item": [ { "name": "Hilbert transform dominant cycle period", "id": "7e920edf-e46d-435e-9c1b-c9d5f39e761c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Dominant Cycle Period (HT_DCPERIOD) endpoint calculates the dominant cycle length of a financial instrument's price data. It returns a numerical value representing the cycle period, which traders can use to identify prevailing market cycles and adjust their trading strategies accordingly." }, "response": [ { "id": "8e6289ea-1683-4308-87a6-0e2b51625d10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ht_dcperiod\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ht_dcperiod\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e6289ea-1683-4308-87a6-0e2b51625d10" }, { "id": "dbdc8305-2b69-467a-a4d3-9c5b992d0ca5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dbdc8305-2b69-467a-a4d3-9c5b992d0ca5" }, { "id": "082d3745-32d0-4ad2-bc45-01406e3fe0da", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-082d3745-32d0-4ad2-bc45-01406e3fe0da" }, { "id": "fc39b868-3358-4a2f-9de4-25aaa211caf8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc39b868-3358-4a2f-9de4-25aaa211caf8" }, { "id": "9cf67b1f-df2c-4424-879c-8e54c4bde77f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9cf67b1f-df2c-4424-879c-8e54c4bde77f" }, { "id": "dfdc9bc0-3f55-40ef-ba4d-eacf764e9e93", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dfdc9bc0-3f55-40ef-ba4d-eacf764e9e93" }, { "id": "1906cf4a-b014-4c02-bec6-e9497358874c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1906cf4a-b014-4c02-bec6-e9497358874c" }, { "id": "5b8539bd-ec4c-43c0-9acd-155c9779f0c1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcperiod?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcperiod" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5b8539bd-ec4c-43c0-9acd-155c9779f0c1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7e920edf-e46d-435e-9c1b-c9d5f39e761c" } ], "id": "45e1cd00-f632-48b5-953b-1d58d699a2af", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-45e1cd00-f632-48b5-953b-1d58d699a2af" }, { "name": "ht_dcphase", "item": [ { "name": "Hilbert transform dominant cycle phase", "id": "67c5eb7e-3879-4394-bd82-dc9a1d7db3b9", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Dominant Cycle Phase (HT_DCPHASE) endpoint provides the current phase of the dominant market cycle for a given financial instrument. It returns numerical data indicating the phase angle, which can be used by traders to identify potential market entry and exit points based on cyclical patterns." }, "response": [ { "id": "e9b18d7d-2d9a-4a33-9463-b5fd9473b093", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ht_dcphase\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ht_dcphase\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e9b18d7d-2d9a-4a33-9463-b5fd9473b093" }, { "id": "ad0cf153-40d0-4bb9-bcea-d945fe46e6eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ad0cf153-40d0-4bb9-bcea-d945fe46e6eb" }, { "id": "87a7af39-80ad-4368-aa85-10f3e4623d2e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87a7af39-80ad-4368-aa85-10f3e4623d2e" }, { "id": "4e4dc841-5d9e-4557-8a64-646d2ebd1296", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4e4dc841-5d9e-4557-8a64-646d2ebd1296" }, { "id": "349e2d67-3c82-49fb-89e0-536aebcfe95b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-349e2d67-3c82-49fb-89e0-536aebcfe95b" }, { "id": "5604fa64-8920-4264-9980-152be5bf1052", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5604fa64-8920-4264-9980-152be5bf1052" }, { "id": "e6783bcf-f8bf-4fba-8c50-dcefb5f604a6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e6783bcf-f8bf-4fba-8c50-dcefb5f604a6" }, { "id": "784b1001-f518-4cb3-98df-05394f2ef96b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_dcphase?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_dcphase" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-784b1001-f518-4cb3-98df-05394f2ef96b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-67c5eb7e-3879-4394-bd82-dc9a1d7db3b9" } ], "id": "644cb5c0-74cb-421f-8414-4f77c8da20fc", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-644cb5c0-74cb-421f-8414-4f77c8da20fc" }, { "name": "ht_phasor", "item": [ { "name": "Hilbert transform phasor components", "id": "cf543cf8-88a1-447e-9d3a-357993286dba", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Phasor Components (HT_PHASOR) endpoint analyzes a price series to return two key components: in-phase and quadrature. These components help identify cyclical patterns and the direction of trends in the data. Use this endpoint to gain precise insights into the timing and strength of market cycles, enhancing your ability to track and predict price movements." }, "response": [ { "id": "6fdabbb5-71a1-4f55-acd8-3e558bdfaa10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"in_phase\": \"\",\n \"quadrature\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"in_phase\": \"\",\n \"quadrature\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6fdabbb5-71a1-4f55-acd8-3e558bdfaa10" }, { "id": "e60c614d-59f3-4859-af56-2d01b12200c3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e60c614d-59f3-4859-af56-2d01b12200c3" }, { "id": "1cfc8533-038b-4834-b06f-65e51f36764b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1cfc8533-038b-4834-b06f-65e51f36764b" }, { "id": "7ce4c34e-2c84-42d5-95fd-b96f55b6dac1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ce4c34e-2c84-42d5-95fd-b96f55b6dac1" }, { "id": "d909f12e-a4b2-4f94-a7c1-f3c8147c4bbe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d909f12e-a4b2-4f94-a7c1-f3c8147c4bbe" }, { "id": "93001488-528c-4f66-8255-fbbc80b5a8c1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93001488-528c-4f66-8255-fbbc80b5a8c1" }, { "id": "5e926815-3e3c-4c3d-b74d-e54a3ec979e7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5e926815-3e3c-4c3d-b74d-e54a3ec979e7" }, { "id": "7c34d668-dcb0-40de-987c-d029f21e2d69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_phasor?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_phasor" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c34d668-dcb0-40de-987c-d029f21e2d69" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cf543cf8-88a1-447e-9d3a-357993286dba" } ], "id": "caf1eade-4fd6-44a6-b03e-a823942e8caf", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-caf1eade-4fd6-44a6-b03e-a823942e8caf" }, { "name": "ht_sine", "item": [ { "name": "Hilbert transform sine wave", "id": "3e469aae-419d-484b-a48d-a2fab693e1cf", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Sine Wave (HT_SINE) endpoint provides sine and cosine wave components derived from the dominant market cycle. This data helps traders pinpoint potential market turning points and assess trend directions by analyzing cyclical patterns." }, "response": [ { "id": "4fccd7d8-1c28-42b6-8e9a-432a6a2ac649", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ht_leadsine\": \"\",\n \"ht_sine\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ht_leadsine\": \"\",\n \"ht_sine\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4fccd7d8-1c28-42b6-8e9a-432a6a2ac649" }, { "id": "2804b82d-acba-42e1-8df0-1ee67f1ec103", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2804b82d-acba-42e1-8df0-1ee67f1ec103" }, { "id": "44fe2f1a-ce5b-49c5-a6a6-c76150fd5143", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44fe2f1a-ce5b-49c5-a6a6-c76150fd5143" }, { "id": "8e297a4d-6c8b-4839-a9e0-f1f5843c8a82", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e297a4d-6c8b-4839-a9e0-f1f5843c8a82" }, { "id": "d492692f-726a-4289-b4fe-a045d611216a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d492692f-726a-4289-b4fe-a045d611216a" }, { "id": "5f92b97b-d7e4-4831-9164-bc82ca893398", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5f92b97b-d7e4-4831-9164-bc82ca893398" }, { "id": "9fd4b038-badf-4a77-8645-e93a885a1d4b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9fd4b038-badf-4a77-8645-e93a885a1d4b" }, { "id": "563a152b-66c8-4400-98cb-bab665661d04", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_sine?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_sine" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-563a152b-66c8-4400-98cb-bab665661d04" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3e469aae-419d-484b-a48d-a2fab693e1cf" } ], "id": "b24a556d-ba26-4b67-9700-8b9d40b81f21", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b24a556d-ba26-4b67-9700-8b9d40b81f21" }, { "name": "ht_trendline", "item": [ { "name": "Hilbert transform instantaneous trendline", "id": "21004fee-26dc-491f-ab33-d1946f868a7c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Instantaneous Trendline (HT_TRENDLINE) endpoint provides a smoothed moving average that aligns with the dominant market cycle. It returns data points that help traders identify current market trends and determine potential entry or exit points in trading." }, "response": [ { "id": "33b342b3-e195-4c9e-bb0d-f23084a56a11", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ht_trendline\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ht_trendline\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-33b342b3-e195-4c9e-bb0d-f23084a56a11" }, { "id": "c112501b-38b1-4954-9f63-9c717ea15745", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c112501b-38b1-4954-9f63-9c717ea15745" }, { "id": "5cc16057-19cb-4c78-bb8e-37968b7c454a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5cc16057-19cb-4c78-bb8e-37968b7c454a" }, { "id": "c0845cf8-9200-48bf-927b-52a5c47570c1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c0845cf8-9200-48bf-927b-52a5c47570c1" }, { "id": "154cff2d-b151-4a38-91b8-5c55be275868", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-154cff2d-b151-4a38-91b8-5c55be275868" }, { "id": "23e828fb-3f13-4f7b-abb4-098cf1e8bdec", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-23e828fb-3f13-4f7b-abb4-098cf1e8bdec" }, { "id": "22ed04b0-808f-442d-a5d8-9b359f7b584b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-22ed04b0-808f-442d-a5d8-9b359f7b584b" }, { "id": "6427b311-1183-4b25-aa36-0ded224a0b1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendline?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendline" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6427b311-1183-4b25-aa36-0ded224a0b1a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21004fee-26dc-491f-ab33-d1946f868a7c" } ], "id": "b5734212-1d80-45ff-9078-5a7292b01513", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b5734212-1d80-45ff-9078-5a7292b01513" }, { "name": "ht_trendmode", "item": [ { "name": "Hilbert transform trend vs cycle mode", "id": "dbb5a165-9e5f-44f4-8b20-22a05a96f011", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Hilbert Transform Trend vs Cycle Mode (HT_TRENDMODE) endpoint identifies whether a market is in a trending or cyclical phase. It returns data indicating the current market phase, allowing users to adjust their trading strategies based on the prevailing conditions." }, "response": [ { "id": "37e918d8-2135-407f-8952-61646a926522", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ht_trendmode\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ht_trendmode\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-37e918d8-2135-407f-8952-61646a926522" }, { "id": "0ec18d78-ed3d-4ca1-9757-0cacf104352c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0ec18d78-ed3d-4ca1-9757-0cacf104352c" }, { "id": "0473028f-c770-42d1-8ed2-4c0659a5523e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0473028f-c770-42d1-8ed2-4c0659a5523e" }, { "id": "31b00525-1266-496d-baa1-0488875ef0e2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-31b00525-1266-496d-baa1-0488875ef0e2" }, { "id": "f19f3e0d-cc21-4296-9cea-3a0a74d9c32f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f19f3e0d-cc21-4296-9cea-3a0a74d9c32f" }, { "id": "7a99ff9c-03b2-4172-b6d5-32c23756a9e3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7a99ff9c-03b2-4172-b6d5-32c23756a9e3" }, { "id": "02ae9f2a-96bf-438e-9d15-5bb0b759d435", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-02ae9f2a-96bf-438e-9d15-5bb0b759d435" }, { "id": "69dd5a79-004f-407c-9b27-849a6a45204a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ht_trendmode?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ht_trendmode" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-69dd5a79-004f-407c-9b27-849a6a45204a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dbb5a165-9e5f-44f4-8b20-22a05a96f011" } ], "id": "4b4cfa62-867b-461d-977f-c116e111fbb3", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-4b4cfa62-867b-461d-977f-c116e111fbb3" }, { "name": "ichimoku", "item": [ { "name": "Ichimoku cloud", "id": "de19915f-f862-47f4-82ff-5c9a4927ccc8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Ichimoku Cloud endpoint provides data on the Ichimoku Kinko Hyo indicator, offering insights into trend direction, support and resistance levels, and potential entry and exit points. It returns key components such as the Tenkan-sen, Kijun-sen, Senkou Span A, Senkou Span B, and Chikou Span. This data helps users evaluate market trends and identify strategic trading opportunities." }, "response": [ { "id": "e0213704-5c59-44da-92d9-73db7556ecc5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"base_line_period\": \"\",\n \"conversion_line_period\": \"\",\n \"include_ahead_span_period\": \"\",\n \"lagging_span_period\": \"\",\n \"leading_span_b_period\": \"\",\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"senkou_span_a\": \"\",\n \"senkou_span_b\": \"\",\n \"tenkan_sen\": \"\",\n \"kijun_sen\": \"\",\n \"chikou_span\": \"\"\n },\n {\n \"datetime\": \"\",\n \"senkou_span_a\": \"\",\n \"senkou_span_b\": \"\",\n \"tenkan_sen\": \"\",\n \"kijun_sen\": \"\",\n \"chikou_span\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e0213704-5c59-44da-92d9-73db7556ecc5" }, { "id": "28b0d812-01f9-4e0d-87af-48e7079eb3e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-28b0d812-01f9-4e0d-87af-48e7079eb3e8" }, { "id": "af5cce46-1d96-43b6-a594-e79d8fad0cdb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-af5cce46-1d96-43b6-a594-e79d8fad0cdb" }, { "id": "df8b3622-bebf-4427-8d71-18e40a42ad1d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-df8b3622-bebf-4427-8d71-18e40a42ad1d" }, { "id": "c0ae544a-d638-4f12-9d61-e6b39e6a09dc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c0ae544a-d638-4f12-9d61-e6b39e6a09dc" }, { "id": "802d75c1-c242-4391-98b6-895e1d3dc982", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-802d75c1-c242-4391-98b6-895e1d3dc982" }, { "id": "2205e2a0-711d-48de-882e-c58b55ade7a3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2205e2a0-711d-48de-882e-c58b55ade7a3" }, { "id": "1208dca2-df4e-478e-9b73-493bcfb0c1af", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ichimoku?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&conversion_line_period=9&base_line_period=26&leading_span_b_period=52&lagging_span_period=26&include_ahead_span_period=true&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ichimoku" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period used for generating the conversation line. Takes values in the range from `1` to `800`", "key": "conversion_line_period", "value": "9" }, { "description": "The time period used for generating the base line. Takes values in the range from `1` to `800`", "key": "base_line_period", "value": "26" }, { "description": "The time period used for generating the leading span B line. Takes values in the range from `1` to `800`", "key": "leading_span_b_period", "value": "52" }, { "description": "The time period used for generating the lagging span line. Takes values in the range from `1` to `800`", "key": "lagging_span_period", "value": "26" }, { "description": "Indicates whether to include ahead span period", "key": "include_ahead_span_period", "value": "true" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1208dca2-df4e-478e-9b73-493bcfb0c1af" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-de19915f-f862-47f4-82ff-5c9a4927ccc8" } ], "id": "103f9e1c-a308-4d53-a0ce-66ba22f1909a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-103f9e1c-a308-4d53-a0ce-66ba22f1909a" }, { "name": "income_statement", "item": [ { "name": "consolidated", "item": [ { "name": "Income statement consolidated", "id": "ae193750-d711-4759-b993-8012fcc40141", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The income statement consolidated endpoint provides a company's raw income statement, detailing revenue, expenses, and net income for specified periods, either annually or quarterly. This data is essential for evaluating a company's financial performance over time, allowing users to access comprehensive financial results in a structured format." }, "response": [ { "id": "040a0a48-377d-4d1d-a94e-6f33053f5099", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"income_statement\": [\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"revenue\": {\n \"total_revenue\": \"\",\n \"operating_revenue\": \"\"\n },\n \"gross_profit\": {\n \"gross_profit_value\": \"\",\n \"cost_of_revenue\": {\n \"cost_of_revenue_value\": \"\",\n \"excise_taxes\": \"\",\n \"reconciled_cost_of_revenue\": \"\"\n }\n },\n \"operating_income\": {\n \"operating_income_value\": \"\",\n \"total_operating_income_as_reported\": \"\",\n \"operating_expense\": \"\",\n \"other_operating_expenses\": \"\",\n \"total_expenses\": \"\"\n },\n \"net_income\": {\n \"net_income_value\": \"\",\n \"net_income_common_stockholders\": \"\",\n \"net_income_including_noncontrolling_interests\": \"\",\n \"net_income_from_tax_loss_carryforward\": \"\",\n \"net_income_extraordinary\": \"\",\n \"net_income_discontinuous_operations\": \"\",\n \"net_income_continuous_operations\": \"\",\n \"net_income_from_continuing_operation_net_minority_interest\": \"\",\n \"net_income_from_continuing_and_discontinued_operation\": \"\",\n \"normalized_income\": \"\",\n \"minority_interests\": \"\"\n },\n \"earnings_per_share\": {\n \"diluted_eps\": \"\",\n \"basic_eps\": \"\",\n \"continuing_and_discontinued_diluted_eps\": \"\",\n \"continuing_and_discontinued_basic_eps\": \"\",\n \"normalized_diluted_eps\": \"\",\n \"normalized_basic_eps\": \"\",\n \"reported_normalized_diluted_eps\": \"\",\n \"reported_normalized_basic_eps\": \"\",\n \"diluted_eps_other_gains_losses\": \"\",\n \"tax_loss_carryforward_diluted_eps\": \"\",\n \"diluted_accounting_change\": \"\",\n \"diluted_extraordinary\": \"\",\n \"diluted_discontinuous_operations\": \"\",\n \"diluted_continuous_operations\": \"\",\n \"basic_eps_other_gains_losses\": \"\",\n \"tax_loss_carryforward_basic_eps\": \"\",\n \"basic_accounting_change\": \"\",\n \"basic_extraordinary\": \"\",\n \"basic_discontinuous_operations\": \"\",\n \"basic_continuous_operations\": \"\",\n \"diluted_ni_avail_to_common_stockholders\": \"\",\n \"average_dilution_earnings\": \"\"\n },\n \"expenses\": {\n \"total_expenses\": \"\",\n \"selling_general_and_administration_expense\": \"\",\n \"selling_and_marketing_expense\": \"\",\n \"general_and_administrative_expense\": \"\",\n \"other_general_and_administrative_expense\": \"\",\n \"depreciation_amortization_depletion_income_statement\": \"\",\n \"research_and_development_expense\": \"\",\n \"insurance_and_claims_expense\": \"\",\n \"rent_and_landing_fees\": \"\",\n \"salaries_and_wages_expense\": \"\",\n \"rent_expense_supplemental\": \"\",\n \"provision_for_doubtful_accounts\": \"\"\n },\n \"interest_income_and_expense\": {\n \"interest_income\": \"\",\n \"interest_expense\": \"\",\n \"net_interest_income\": \"\",\n \"net_non_operating_interest_income_expense\": \"\",\n \"interest_expense_non_operating\": \"\",\n \"interest_income_non_operating\": \"\"\n },\n \"other_income_and_expenses\": {\n \"other_income_expense\": \"\",\n \"other_non_operating_income_expenses\": \"\",\n \"special_income_charges\": \"\",\n \"gain_on_sale_of_ppe\": \"\",\n \"gain_on_sale_of_business\": \"\",\n \"gain_on_sale_of_security\": \"\",\n \"other_special_charges\": \"\",\n \"write_off\": \"\",\n \"impairment_of_capital_assets\": \"\",\n \"restructuring_and_merger_acquisition\": \"\",\n \"securities_amortization\": \"\",\n \"earnings_from_equity_interest\": \"\",\n \"earnings_from_equity_interest_net_of_tax\": \"\",\n \"total_other_finance_cost\": \"\"\n },\n \"taxes\": {\n \"tax_provision\": \"\",\n \"tax_effect_of_unusual_items\": \"\",\n \"tax_rate_for_calculations\": \"\",\n \"other_taxes\": \"\"\n },\n \"depreciation_and_amortization\": {\n \"depreciation_amortization_depletion\": \"\",\n \"amortization_of_intangibles\": \"\",\n \"depreciation\": \"\",\n \"amortization\": \"\",\n \"depletion\": \"\",\n \"depreciation_and_amortization_in_income_statement\": \"\"\n },\n \"ebitda\": {\n \"ebitda_value\": \"\",\n \"normalized_ebitda_value\": \"\",\n \"ebit_value\": \"\"\n },\n \"dividends_and_shares\": {\n \"dividend_per_share\": \"\",\n \"diluted_average_shares\": \"\",\n \"basic_average_shares\": \"\",\n \"preferred_stock_dividends\": \"\",\n \"other_under_preferred_stock_dividend\": \"\"\n },\n \"unusual_items\": {\n \"total_unusual_items\": \"\",\n \"total_unusual_items_excluding_goodwill\": \"\"\n },\n \"depreciation\": {\n \"reconciled_depreciation\": \"\"\n },\n \"pretax_income\": {\n \"pretax_income_value\": \"\"\n },\n \"special_income_charges\": {\n \"special_income_charges_value\": \"\"\n }\n },\n {\n \"fiscal_date\": \"\",\n \"year\": \"\",\n \"revenue\": {\n \"total_revenue\": \"\",\n \"operating_revenue\": \"\"\n },\n \"gross_profit\": {\n \"gross_profit_value\": \"\",\n \"cost_of_revenue\": {\n \"cost_of_revenue_value\": \"\",\n \"excise_taxes\": \"\",\n \"reconciled_cost_of_revenue\": \"\"\n }\n },\n \"operating_income\": {\n \"operating_income_value\": \"\",\n \"total_operating_income_as_reported\": \"\",\n \"operating_expense\": \"\",\n \"other_operating_expenses\": \"\",\n \"total_expenses\": \"\"\n },\n \"net_income\": {\n \"net_income_value\": \"\",\n \"net_income_common_stockholders\": \"\",\n \"net_income_including_noncontrolling_interests\": \"\",\n \"net_income_from_tax_loss_carryforward\": \"\",\n \"net_income_extraordinary\": \"\",\n \"net_income_discontinuous_operations\": \"\",\n \"net_income_continuous_operations\": \"\",\n \"net_income_from_continuing_operation_net_minority_interest\": \"\",\n \"net_income_from_continuing_and_discontinued_operation\": \"\",\n \"normalized_income\": \"\",\n \"minority_interests\": \"\"\n },\n \"earnings_per_share\": {\n \"diluted_eps\": \"\",\n \"basic_eps\": \"\",\n \"continuing_and_discontinued_diluted_eps\": \"\",\n \"continuing_and_discontinued_basic_eps\": \"\",\n \"normalized_diluted_eps\": \"\",\n \"normalized_basic_eps\": \"\",\n \"reported_normalized_diluted_eps\": \"\",\n \"reported_normalized_basic_eps\": \"\",\n \"diluted_eps_other_gains_losses\": \"\",\n \"tax_loss_carryforward_diluted_eps\": \"\",\n \"diluted_accounting_change\": \"\",\n \"diluted_extraordinary\": \"\",\n \"diluted_discontinuous_operations\": \"\",\n \"diluted_continuous_operations\": \"\",\n \"basic_eps_other_gains_losses\": \"\",\n \"tax_loss_carryforward_basic_eps\": \"\",\n \"basic_accounting_change\": \"\",\n \"basic_extraordinary\": \"\",\n \"basic_discontinuous_operations\": \"\",\n \"basic_continuous_operations\": \"\",\n \"diluted_ni_avail_to_common_stockholders\": \"\",\n \"average_dilution_earnings\": \"\"\n },\n \"expenses\": {\n \"total_expenses\": \"\",\n \"selling_general_and_administration_expense\": \"\",\n \"selling_and_marketing_expense\": \"\",\n \"general_and_administrative_expense\": \"\",\n \"other_general_and_administrative_expense\": \"\",\n \"depreciation_amortization_depletion_income_statement\": \"\",\n \"research_and_development_expense\": \"\",\n \"insurance_and_claims_expense\": \"\",\n \"rent_and_landing_fees\": \"\",\n \"salaries_and_wages_expense\": \"\",\n \"rent_expense_supplemental\": \"\",\n \"provision_for_doubtful_accounts\": \"\"\n },\n \"interest_income_and_expense\": {\n \"interest_income\": \"\",\n \"interest_expense\": \"\",\n \"net_interest_income\": \"\",\n \"net_non_operating_interest_income_expense\": \"\",\n \"interest_expense_non_operating\": \"\",\n \"interest_income_non_operating\": \"\"\n },\n \"other_income_and_expenses\": {\n \"other_income_expense\": \"\",\n \"other_non_operating_income_expenses\": \"\",\n \"special_income_charges\": \"\",\n \"gain_on_sale_of_ppe\": \"\",\n \"gain_on_sale_of_business\": \"\",\n \"gain_on_sale_of_security\": \"\",\n \"other_special_charges\": \"\",\n \"write_off\": \"\",\n \"impairment_of_capital_assets\": \"\",\n \"restructuring_and_merger_acquisition\": \"\",\n \"securities_amortization\": \"\",\n \"earnings_from_equity_interest\": \"\",\n \"earnings_from_equity_interest_net_of_tax\": \"\",\n \"total_other_finance_cost\": \"\"\n },\n \"taxes\": {\n \"tax_provision\": \"\",\n \"tax_effect_of_unusual_items\": \"\",\n \"tax_rate_for_calculations\": \"\",\n \"other_taxes\": \"\"\n },\n \"depreciation_and_amortization\": {\n \"depreciation_amortization_depletion\": \"\",\n \"amortization_of_intangibles\": \"\",\n \"depreciation\": \"\",\n \"amortization\": \"\",\n \"depletion\": \"\",\n \"depreciation_and_amortization_in_income_statement\": \"\"\n },\n \"ebitda\": {\n \"ebitda_value\": \"\",\n \"normalized_ebitda_value\": \"\",\n \"ebit_value\": \"\"\n },\n \"dividends_and_shares\": {\n \"dividend_per_share\": \"\",\n \"diluted_average_shares\": \"\",\n \"basic_average_shares\": \"\",\n \"preferred_stock_dividends\": \"\",\n \"other_under_preferred_stock_dividend\": \"\"\n },\n \"unusual_items\": {\n \"total_unusual_items\": \"\",\n \"total_unusual_items_excluding_goodwill\": \"\"\n },\n \"depreciation\": {\n \"reconciled_depreciation\": \"\"\n },\n \"pretax_income\": {\n \"pretax_income_value\": \"\"\n },\n \"special_income_charges\": {\n \"special_income_charges_value\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-040a0a48-377d-4d1d-a94e-6f33053f5099" }, { "id": "9a686e1d-45c8-4e05-abe2-2aa20828ae83", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9a686e1d-45c8-4e05-abe2-2aa20828ae83" }, { "id": "da422850-a044-4793-ad1a-cfe17f880dae", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-da422850-a044-4793-ad1a-cfe17f880dae" }, { "id": "70e6f742-2b26-48d3-b62a-e87d2ca230c8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-70e6f742-2b26-48d3-b62a-e87d2ca230c8" }, { "id": "fb7327c1-090d-4e6a-9454-96db2803954f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fb7327c1-090d-4e6a-9454-96db2803954f" }, { "id": "d91a642c-87ec-4a73-9a2b-a9f35bb0c270", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d91a642c-87ec-4a73-9a2b-a9f35bb0c270" }, { "id": "6e90f57b-9ff8-46f5-bf93-bfc71b7e14b6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e90f57b-9ff8-46f5-bf93-bfc71b7e14b6" }, { "id": "f828132e-b217-4e2d-aca6-30ae7e1699b1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement/consolidated?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement", "consolidated" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f828132e-b217-4e2d-aca6-30ae7e1699b1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae193750-d711-4759-b993-8012fcc40141" } ], "id": "71fec63f-3e9b-48c0-bf9f-88dfd3889a0d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-71fec63f-3e9b-48c0-bf9f-88dfd3889a0d" }, { "name": "Income statement", "id": "c13346b6-d3db-49a9-8031-550b3d5d6a49", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] }, "description": "The income statement endpoint provides detailed financial data on a company's income statement, including revenues, expenses, and net income for specified periods, either annually or quarterly. This endpoint is essential for retrieving comprehensive financial performance metrics of a company, allowing users to access historical and current financial results." }, "response": [ { "id": "6760395e-2581-4f13-a6bf-44ee1bc80351", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"period\": \"\",\n \"symbol\": \"\"\n },\n \"income_statement\": [\n {\n \"fiscal_date\": \"\",\n \"quarter\": \"\",\n \"year\": \"\",\n \"sales\": \"\",\n \"cost_of_goods\": \"\",\n \"gross_profit\": \"\",\n \"operating_expense\": {\n \"research_and_development\": \"\",\n \"selling_general_and_administrative\": \"\",\n \"other_operating_expenses\": \"\"\n },\n \"operating_income\": \"\",\n \"non_operating_interest\": {\n \"income\": \"\",\n \"expense\": \"\"\n },\n \"other_income_expense\": \"\",\n \"pretax_income\": \"\",\n \"income_tax\": \"\",\n \"net_income\": \"\",\n \"eps_basic\": \"\",\n \"eps_diluted\": \"\",\n \"basic_shares_outstanding\": \"\",\n \"diluted_shares_outstanding\": \"\",\n \"ebit\": \"\",\n \"ebitda\": \"\",\n \"net_income_continuous_operations\": \"\",\n \"minority_interests\": \"\",\n \"preferred_stock_dividends\": \"\"\n },\n {\n \"fiscal_date\": \"\",\n \"quarter\": \"\",\n \"year\": \"\",\n \"sales\": \"\",\n \"cost_of_goods\": \"\",\n \"gross_profit\": \"\",\n \"operating_expense\": {\n \"research_and_development\": \"\",\n \"selling_general_and_administrative\": \"\",\n \"other_operating_expenses\": \"\"\n },\n \"operating_income\": \"\",\n \"non_operating_interest\": {\n \"income\": \"\",\n \"expense\": \"\"\n },\n \"other_income_expense\": \"\",\n \"pretax_income\": \"\",\n \"income_tax\": \"\",\n \"net_income\": \"\",\n \"eps_basic\": \"\",\n \"eps_diluted\": \"\",\n \"basic_shares_outstanding\": \"\",\n \"diluted_shares_outstanding\": \"\",\n \"ebit\": \"\",\n \"ebitda\": \"\",\n \"net_income_continuous_operations\": \"\",\n \"minority_interests\": \"\",\n \"preferred_stock_dividends\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6760395e-2581-4f13-a6bf-44ee1bc80351" }, { "id": "114316d0-738e-4ad6-9e30-277b44352af2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-114316d0-738e-4ad6-9e30-277b44352af2" }, { "id": "d9795d0f-d6f1-47d2-ac04-46d773e1828d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d9795d0f-d6f1-47d2-ac04-46d773e1828d" }, { "id": "e1e43171-5307-45bf-a414-04cc9eb70282", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e1e43171-5307-45bf-a414-04cc9eb70282" }, { "id": "ae41759f-6eb8-4bf3-9e9e-eb6d90c2a2a3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ae41759f-6eb8-4bf3-9e9e-eb6d90c2a2a3" }, { "id": "a84cb65f-ab62-4af1-bfb0-1b475dcb81cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a84cb65f-ab62-4af1-bfb0-1b475dcb81cb" }, { "id": "cba5e642-2c74-46e3-a207-a889c3897eec", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cba5e642-2c74-46e3-a207-a889c3897eec" }, { "id": "c6bef460-2012-43d2-87c1-afd96ba42bcf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/income_statement?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&period=annual&start_date=&end_date=&outputsize=6", "host": [ "{{baseUrl}}" ], "path": [ "income_statement" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The reporting period for the income statement data", "key": "period", "value": "annual" }, { "description": "Begin date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or after this date.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for filtering income statements by fiscal date.\nReturns income statements with fiscal dates on or before this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of records in response", "key": "outputsize", "value": "6" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6bef460-2012-43d2-87c1-afd96ba42bcf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c13346b6-d3db-49a9-8031-550b3d5d6a49" } ], "id": "a1f68da3-b7b2-4124-883e-f986e4fed490", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a1f68da3-b7b2-4124-883e-f986e4fed490" }, { "name": "insider_transactions", "item": [ { "name": "Insider transaction", "id": "37abb8f9-b4db-4b16-8506-a392d6023822", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] }, "description": "The insider transaction endpoint provides detailed data on trades executed by company insiders, such as executives and directors. It returns information including the insider's name, their role, the transaction type, the number of shares, the transaction date, and the price per share. This endpoint is useful for tracking insider activity and understanding potential insider sentiment towards a company's stock." }, "response": [ { "id": "598d83c5-8f19-434d-886d-9c8c31f48892", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"insider_transactions\": [\n {\n \"date_reported\": \"\",\n \"description\": \"\",\n \"full_name\": \"\",\n \"position\": \"\",\n \"is_direct\": \"\",\n \"shares\": \"\",\n \"value\": \"\"\n },\n {\n \"date_reported\": \"\",\n \"description\": \"\",\n \"full_name\": \"\",\n \"position\": \"\",\n \"is_direct\": \"\",\n \"shares\": \"\",\n \"value\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-598d83c5-8f19-434d-886d-9c8c31f48892" }, { "id": "beb75a0c-fb68-4dc5-a0ce-3e6c5f9ca34c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-beb75a0c-fb68-4dc5-a0ce-3e6c5f9ca34c" }, { "id": "bd423d2f-7add-413d-8293-657e6319fd13", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bd423d2f-7add-413d-8293-657e6319fd13" }, { "id": "2424a5ea-907a-4df2-9aaf-24160e68c1d7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2424a5ea-907a-4df2-9aaf-24160e68c1d7" }, { "id": "f30b6f5d-535a-45a4-90bd-3c00fb7ded00", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f30b6f5d-535a-45a4-90bd-3c00fb7ded00" }, { "id": "2c15cf2b-c678-45ea-845e-96a1cfa604cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2c15cf2b-c678-45ea-845e-96a1cfa604cc" }, { "id": "298e0ebc-9aa7-46ac-af19-aa167cee49a3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-298e0ebc-9aa7-46ac-af19-aa167cee49a3" }, { "id": "2e4c2e32-0fb8-479b-ae8a-c1bbc3890b84", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/insider_transactions?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "insider_transactions" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `TSLA`.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded, e.g., `Nasdaq`, `NSE`", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., United States or US.", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e4c2e32-0fb8-479b-ae8a-c1bbc3890b84" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-37abb8f9-b4db-4b16-8506-a392d6023822" } ], "id": "26c0ebbe-6235-4288-b6d1-7d9725af3c23", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-26c0ebbe-6235-4288-b6d1-7d9725af3c23" }, { "name": "institutional_holders", "item": [ { "name": "Institutional holders", "id": "6bfad012-d0e9-4ad2-824b-6d8fdf71e2c4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The institutional holders endpoint provides detailed information on the percentage and amount of a company's stock owned by institutional investors, such as pension funds, insurance companies, and investment firms. This data is essential for understanding the influence and involvement of large entities in a company's ownership structure." }, "response": [ { "id": "338e3762-6b97-42be-b0a5-1e84cca14100", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"institutional_holders\": [\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n },\n {\n \"entity_name\": \"\",\n \"date_reported\": \"\",\n \"shares\": \"\",\n \"value\": \"\",\n \"percent_held\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-338e3762-6b97-42be-b0a5-1e84cca14100" }, { "id": "4055a334-9843-4ffc-b110-edec6ecb0741", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4055a334-9843-4ffc-b110-edec6ecb0741" }, { "id": "00daa47b-87f8-412a-a030-57e22bf380c6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00daa47b-87f8-412a-a030-57e22bf380c6" }, { "id": "9020e964-f546-4edf-aca6-824f72d07dd3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9020e964-f546-4edf-aca6-824f72d07dd3" }, { "id": "aaf1b0df-7573-43c7-93e3-0cccbe203ce2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aaf1b0df-7573-43c7-93e3-0cccbe203ce2" }, { "id": "b37df0f0-5bf5-4564-bc3f-dc6b2da7b2fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b37df0f0-5bf5-4564-bc3f-dc6b2da7b2fc" }, { "id": "1f54816a-ca5a-4d98-88ea-3e0be3f0a12a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f54816a-ca5a-4d98-88ea-3e0be3f0a12a" }, { "id": "c81cefd0-a240-431a-bd7f-91532f5e93a6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/institutional_holders?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "institutional_holders" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c81cefd0-a240-431a-bd7f-91532f5e93a6" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6bfad012-d0e9-4ad2-824b-6d8fdf71e2c4" } ], "id": "fcef07e7-66a2-4dd2-98d2-15e76a5148fe", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fcef07e7-66a2-4dd2-98d2-15e76a5148fe" }, { "name": "instrument_type", "item": [ { "name": "Instrument type", "id": "3f8ff3c1-0f94-4d90-a84a-c22a9a5f69dd", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] }, "description": "The instrument type endpoint lists all available financial instrument types, such as stocks, ETFs, and cryptos. This information is essential for users to identify and categorize different financial instruments when accessing or analyzing market data." }, "response": [ { "id": "1e10122f-3689-4093-8316-dfafb6cc1d11", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": [\n \"\",\n \"\"\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1e10122f-3689-4093-8316-dfafb6cc1d11" }, { "id": "d2ec99d9-4324-48bd-a6d2-46c2f6f4e58d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d2ec99d9-4324-48bd-a6d2-46c2f6f4e58d" }, { "id": "00cf7137-2dda-47c7-9b0c-475cc1f5d890", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00cf7137-2dda-47c7-9b0c-475cc1f5d890" }, { "id": "01f3773a-8da4-4eb5-b12d-fbae5f8b2411", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-01f3773a-8da4-4eb5-b12d-fbae5f8b2411" }, { "id": "3042adc4-ac73-42ba-baac-13eb0d41fcf3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3042adc4-ac73-42ba-baac-13eb0d41fcf3" }, { "id": "4ca58dce-00dd-4f2f-bc56-898ace517076", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ca58dce-00dd-4f2f-bc56-898ace517076" }, { "id": "ab33b07c-9d90-46c0-9b09-9f2c050a2c36", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab33b07c-9d90-46c0-9b09-9f2c050a2c36" }, { "id": "8fa24a89-a9e1-4885-b534-95513ef6d80b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/instrument_type", "host": [ "{{baseUrl}}" ], "path": [ "instrument_type" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8fa24a89-a9e1-4885-b534-95513ef6d80b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f8ff3c1-0f94-4d90-a84a-c22a9a5f69dd" } ], "id": "208260fb-8566-4820-9f1e-cff7fdd09742", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-208260fb-8566-4820-9f1e-cff7fdd09742" }, { "name": "intervals", "item": [ { "name": "Intervals List", "id": "447d9888-0bea-4aa0-a9e6-f543a2ea33e7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] }, "description": "The intervals endpoint provides a list of supported time intervals that can be used for querying financial data." }, "response": [ { "id": "f326d100-3747-4d53-b974-2e25afc3dbe0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n \"\",\n \"\"\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f326d100-3747-4d53-b974-2e25afc3dbe0" }, { "id": "6828399b-4147-4b25-a23f-059327f540e0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6828399b-4147-4b25-a23f-059327f540e0" }, { "id": "58808657-4a6b-43a1-8574-48729d3594cd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58808657-4a6b-43a1-8574-48729d3594cd" }, { "id": "672495bd-1f9b-426c-92b5-e98cadb2e1be", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-672495bd-1f9b-426c-92b5-e98cadb2e1be" }, { "id": "3f3fc4ad-2d10-4259-b20b-0145f9c0fec2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f3fc4ad-2d10-4259-b20b-0145f9c0fec2" }, { "id": "6ae7b60e-cf11-46b1-a901-1d7e092b2b9f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6ae7b60e-cf11-46b1-a901-1d7e092b2b9f" }, { "id": "eafd3d0c-2aa3-4990-b5a8-7ed77d4ed324", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eafd3d0c-2aa3-4990-b5a8-7ed77d4ed324" }, { "id": "cd99f3c2-e4fc-42c9-8c6a-356735534f0c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/intervals", "host": [ "{{baseUrl}}" ], "path": [ "intervals" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cd99f3c2-e4fc-42c9-8c6a-356735534f0c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-447d9888-0bea-4aa0-a9e6-f543a2ea33e7" } ], "id": "b52ba96b-a710-4398-8fcd-f9f12e068bfe", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b52ba96b-a710-4398-8fcd-f9f12e068bfe" }, { "name": "ipo_calendar", "item": [ { "name": "IPO calendar", "id": "ebd0184f-12d7-4535-898b-2721b552f81d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] }, "description": "The IPO Calendar endpoint provides detailed information on initial public offerings (IPOs), including those that have occurred in the past, are happening today, or are scheduled for the future. Users can access data such as company names, IPO dates, and offering details, allowing them to track and monitor IPO activity efficiently." }, "response": [ { "id": "48107882-ed72-4e8d-add7-0b7b3c27c602", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"ipsum_dba\": [\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n },\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n }\n ],\n \"occaecatb17\": [\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n },\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n }\n ],\n \"qui57\": [\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n },\n {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"price_range_low\": \"\",\n \"price_range_high\": \"\",\n \"offer_price\": \"\",\n \"shares\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-48107882-ed72-4e8d-add7-0b7b3c27c602" }, { "id": "d8fcfbf5-9a36-44fa-b51a-86cb7b7136aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d8fcfbf5-9a36-44fa-b51a-86cb7b7136aa" }, { "id": "7a3eb0cf-1427-4702-b30f-061e227b04c6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7a3eb0cf-1427-4702-b30f-061e227b04c6" }, { "id": "4078d4e9-686d-4d33-bad3-e150452cc894", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4078d4e9-686d-4d33-bad3-e150452cc894" }, { "id": "4e2667fc-52b1-484e-a6ce-16ff4ed5b7f6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4e2667fc-52b1-484e-a6ce-16ff4ed5b7f6" }, { "id": "e1bdb72c-dddf-47af-9fd2-f50cfecdb7d0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e1bdb72c-dddf-47af-9fd2-f50cfecdb7d0" }, { "id": "680fafd0-006d-4ec7-804a-82df825f5840", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-680fafd0-006d-4ec7-804a-82df825f5840" }, { "id": "ffcb6ce4-4fd5-45de-838b-194525560aeb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ipo_calendar?exchange=&mic_code=&country=&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "ipo_calendar" ], "query": [ { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The earliest IPO date to include in the results. Format: `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The latest IPO date to include in the results. Format: `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ffcb6ce4-4fd5-45de-838b-194525560aeb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ebd0184f-12d7-4535-898b-2721b552f81d" } ], "id": "fcc17c68-bf57-485b-a109-2497a07bfb4c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fcc17c68-bf57-485b-a109-2497a07bfb4c" }, { "name": "kama", "item": [ { "name": "Kaufman adaptive moving average", "id": "6c81c59d-5677-47a2-b8e2-5144eec801a9", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Kaufman Adaptive Moving Average (KAMA) endpoint calculates the KAMA for a specified financial instrument, returning a time series of values that reflect the average price adjusted for market volatility. This endpoint helps users identify trends by smoothing out price fluctuations while remaining sensitive to significant price movements." }, "response": [ { "id": "01ac7054-70bf-44b0-83cd-86177bca5729", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"kama\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"kama\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-01ac7054-70bf-44b0-83cd-86177bca5729" }, { "id": "b1030ece-7df1-411e-9c63-9f9bd8267a3e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b1030ece-7df1-411e-9c63-9f9bd8267a3e" }, { "id": "41dc2929-0cbd-4747-9e8c-6341856f7949", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-41dc2929-0cbd-4747-9e8c-6341856f7949" }, { "id": "8c482f3d-1425-4809-b9ac-d8f45a02c82c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8c482f3d-1425-4809-b9ac-d8f45a02c82c" }, { "id": "afd59aa3-fce3-499c-9654-3201589b7998", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-afd59aa3-fce3-499c-9654-3201589b7998" }, { "id": "9a515f2b-7832-4e39-8e41-c5e347ecf1c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9a515f2b-7832-4e39-8e41-c5e347ecf1c2" }, { "id": "6a740768-e7e2-4bcc-b0b4-11234e4cf28f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6a740768-e7e2-4bcc-b0b4-11234e4cf28f" }, { "id": "3e447edf-a887-4580-aa7e-53132e5cab61", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3e447edf-a887-4580-aa7e-53132e5cab61" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6c81c59d-5677-47a2-b8e2-5144eec801a9" } ], "id": "b3eb5044-0049-4e80-b76b-607bfced0bea", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b3eb5044-0049-4e80-b76b-607bfced0bea" }, { "name": "keltner", "item": [ { "name": "Keltner channel", "id": "83f9fff0-0d1c-4c5d-8b8f-f5e5f3d8b120", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Keltner Channel endpoint provides data for a volatility-based technical indicator that combines the Exponential Moving Average (EMA) and the Average True Range (ATR) to form a channel around a security's price. This endpoint returns the upper, middle, and lower bands of the channel, which can be used to identify potential overbought or oversold conditions, assess trend direction, and detect possible price breakouts." }, "response": [ { "id": "0bb983a5-51ae-4c08-acec-8841668851aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"atr_time_period\": \"\",\n \"ma_type\": \"\",\n \"multiplier\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"lower_line\": \"\",\n \"middle_line\": \"\",\n \"upper_line\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"lower_line\": \"\",\n \"middle_line\": \"\",\n \"upper_line\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0bb983a5-51ae-4c08-acec-8841668851aa" }, { "id": "b05b3586-c065-4bed-b7a9-2ac93d17a933", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b05b3586-c065-4bed-b7a9-2ac93d17a933" }, { "id": "7bb667ff-2654-45b1-86ad-2fd0a01475f6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7bb667ff-2654-45b1-86ad-2fd0a01475f6" }, { "id": "da06eaa5-fbac-44fb-bd4b-525d9577ad4d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-da06eaa5-fbac-44fb-bd4b-525d9577ad4d" }, { "id": "2c4ed389-fae5-4067-b7a6-9e98f8bf2b71", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2c4ed389-fae5-4067-b7a6-9e98f8bf2b71" }, { "id": "0d6c2e45-f231-4f54-8b7f-e17e6eef2c27", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0d6c2e45-f231-4f54-8b7f-e17e6eef2c27" }, { "id": "72d9b633-54ae-41d8-a7f5-cd8d6ed7fb7a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-72d9b633-54ae-41d8-a7f5-cd8d6ed7fb7a" }, { "id": "832e9392-d07e-4085-9eb2-cdb82d1a2574", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/keltner?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=20&atr_time_period=10&multiplier=2&series_type=open&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "keltner" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "20" }, { "description": "The time period used for calculating the Average True Range. Takes values in the range from `1` to `800`", "key": "atr_time_period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity", "key": "multiplier", "value": "2" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-832e9392-d07e-4085-9eb2-cdb82d1a2574" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-83f9fff0-0d1c-4c5d-8b8f-f5e5f3d8b120" } ], "id": "fb0b3782-9093-403f-9e2d-028d4c929a63", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fb0b3782-9093-403f-9e2d-028d4c929a63" }, { "name": "key_executives", "item": [ { "name": "Key executives", "id": "d7826be8-58fa-4f95-9e23-4d7be6147c63", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The key executives endpoint provides detailed information about a company's key executives identified by a specific stock symbol. It returns data such as names, titles, and roles of the executives, which can be useful for understanding the leadership structure of the company." }, "response": [ { "id": "fc6c4fa2-285e-4519-a9b1-b963fae38394", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n \"key_executives\": [\n {\n \"name\": \"\",\n \"title\": \"\",\n \"age\": \"\",\n \"year_born\": \"\",\n \"pay\": \"\"\n },\n {\n \"name\": \"\",\n \"title\": \"\",\n \"age\": \"\",\n \"year_born\": \"\",\n \"pay\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc6c4fa2-285e-4519-a9b1-b963fae38394" }, { "id": "5d96a2c6-8586-4207-be52-678c25f3d04e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5d96a2c6-8586-4207-be52-678c25f3d04e" }, { "id": "99b4ad4f-018a-47b9-976a-ab100a539703", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-99b4ad4f-018a-47b9-976a-ab100a539703" }, { "id": "baada3e1-ae90-4d87-abe7-0a03757c1222", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-baada3e1-ae90-4d87-abe7-0a03757c1222" }, { "id": "fc7e3aa9-804b-4bf2-81f6-52d21dc68cd3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc7e3aa9-804b-4bf2-81f6-52d21dc68cd3" }, { "id": "54bc9ce2-3221-4af4-bda0-e3c4a562e04e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-54bc9ce2-3221-4af4-bda0-e3c4a562e04e" }, { "id": "d0703731-3ca4-4a0a-beb1-39f845f19e06", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d0703731-3ca4-4a0a-beb1-39f845f19e06" }, { "id": "781bda29-1458-4b2d-9c20-93acc3955b88", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/key_executives?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "key_executives" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-781bda29-1458-4b2d-9c20-93acc3955b88" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d7826be8-58fa-4f95-9e23-4d7be6147c63" } ], "id": "cffdb56d-bb3c-4282-93f1-ed83d78411d7", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-cffdb56d-bb3c-4282-93f1-ed83d78411d7" }, { "name": "kst", "item": [ { "name": "Know sure thing", "id": "e0837835-e774-4844-8350-60fc1ea78677", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Know Sure Thing (KST) endpoint provides a momentum oscillator that combines four smoothed rates of change into a single trend-following indicator. This endpoint returns data that helps users identify potential trend reversals, as well as overbought or oversold conditions in the market." }, "response": [ { "id": "8c174b52-97df-4ac4-9b84-7b2979de2610", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"roc_period_1\": \"\",\n \"roc_period_2\": \"\",\n \"roc_period_3\": \"\",\n \"roc_period_4\": \"\",\n \"signal_period\": \"\",\n \"sma_period_1\": \"\",\n \"sma_period_2\": \"\",\n \"sma_period_3\": \"\",\n \"sma_period_4\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"kst\": \"\",\n \"kst_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"kst\": \"\",\n \"kst_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8c174b52-97df-4ac4-9b84-7b2979de2610" }, { "id": "91d6d54a-b94d-49a3-8173-a815b5b5bb2d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91d6d54a-b94d-49a3-8173-a815b5b5bb2d" }, { "id": "38324cdc-a799-42fb-8787-25e42e44b63c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38324cdc-a799-42fb-8787-25e42e44b63c" }, { "id": "2a4285ed-2296-47db-9bba-6ba316b99461", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a4285ed-2296-47db-9bba-6ba316b99461" }, { "id": "a1dbc747-6ca3-4e5a-b858-c046dc8506c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a1dbc747-6ca3-4e5a-b858-c046dc8506c4" }, { "id": "6373a757-b543-4a8f-86dc-767e11e41a53", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6373a757-b543-4a8f-86dc-767e11e41a53" }, { "id": "543d0214-c5b4-4ae4-b130-0ff4cf25abae", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-543d0214-c5b4-4ae4-b130-0ff4cf25abae" }, { "id": "0960e9d2-e671-44fb-a540-3b5e1a63424d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/kst?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&roc_period_1=10&roc_period_2=15&roc_period_3=20&roc_period_4=30&sma_period_1=10&sma_period_2=10&sma_period_3=10&sma_period_4=15&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "kst" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the first Rate of Change calculation.", "key": "roc_period_1", "value": "10" }, { "description": "The time period for the second Rate of Change calculation.", "key": "roc_period_2", "value": "15" }, { "description": "The time period for the third Rate of Change calculation.", "key": "roc_period_3", "value": "20" }, { "description": "The time period for the forth Rate of Change calculation.", "key": "roc_period_4", "value": "30" }, { "description": "The time period for the first Simple Moving Average.", "key": "sma_period_1", "value": "10" }, { "description": "The time period for the second Simple Moving Average.", "key": "sma_period_2", "value": "10" }, { "description": "The time period for the third Simple Moving Average.", "key": "sma_period_3", "value": "10" }, { "description": "The time period for the forth Simple Moving Average.", "key": "sma_period_4", "value": "15" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0960e9d2-e671-44fb-a540-3b5e1a63424d" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e0837835-e774-4844-8350-60fc1ea78677" } ], "id": "e8bea8fa-ba47-48a2-9139-cd6dd4e47e47", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e8bea8fa-ba47-48a2-9139-cd6dd4e47e47" }, { "name": "last_change", "item": [ { "name": "{endpoint}", "item": [ { "name": "Last changes", "id": "df671f0b-a293-4ddb-8524-9bd0730fcbe1", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "id": "eb79d549-5e43-42b0-807e-113dc7d1a7a9", "key": "endpoint", "value": "profile", "description": "(Required) Endpoint name" } ] }, "description": "The last change endpoint provides the most recent updates to fundamental data for a specified dataset. It returns a timestamp indicating when the data was last modified, allowing users to efficiently manage API requests by only fetching new data when changes occur. This helps optimize data retrieval and reduce unnecessary API credit usage." }, "response": [ { "id": "db171a95-544a-42ba-980e-29e28e25ba22", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"last_change\": \"\",\n \"mic_code\": \"\",\n \"symbol\": \"\"\n },\n {\n \"last_change\": \"\",\n \"mic_code\": \"\",\n \"symbol\": \"\"\n }\n ],\n \"pagination\": {\n \"current_page\": \"\",\n \"per_page\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-db171a95-544a-42ba-980e-29e28e25ba22" }, { "id": "7ccc68b0-3ddf-46b2-987b-6dd844cc4cd0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ccc68b0-3ddf-46b2-987b-6dd844cc4cd0" }, { "id": "44e1a662-3f86-4f5a-aa91-858b9c76c755", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44e1a662-3f86-4f5a-aa91-858b9c76c755" }, { "id": "d3e6ebd7-8464-4b03-9a37-d90a9349dfbe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d3e6ebd7-8464-4b03-9a37-d90a9349dfbe" }, { "id": "f488a87c-3d8a-4224-b663-25f7f8e1f8a9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f488a87c-3d8a-4224-b663-25f7f8e1f8a9" }, { "id": "deb9a488-3363-4732-b4b3-9f819e44065b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-deb9a488-3363-4732-b4b3-9f819e44065b" }, { "id": "c683947d-4122-4b2c-9e02-2535fc75d6d1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c683947d-4122-4b2c-9e02-2535fc75d6d1" }, { "id": "d62bc314-3b98-4f97-9dc0-2869f1526ffd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/last_change/:endpoint?start_date=&symbol=&exchange=&mic_code=&country=&page=1&outputsize=30", "host": [ "{{baseUrl}}" ], "path": [ "last_change", ":endpoint" ], "query": [ { "description": "The starting date and time for data selection, in `2006-01-02T15:04:05` format", "key": "start_date", "value": "" }, { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "30" } ], "variable": [ { "key": "endpoint" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d62bc314-3b98-4f97-9dc0-2869f1526ffd" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-df671f0b-a293-4ddb-8524-9bd0730fcbe1" } ], "id": "ca6cdf37-3228-4dca-8909-d13497344a57", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-ca6cdf37-3228-4dca-8909-d13497344a57" } ], "id": "19298468-42d3-46ad-9162-0e77205efe72", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-19298468-42d3-46ad-9162-0e77205efe72" }, { "name": "linearreg", "item": [ { "name": "Linear regression", "id": "1e5f4c7f-1e8f-4a71-bd21-dd934645ac57", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Linear Regression endpoint (LINEARREG) calculates the best-fit straight line through a series of financial data points. It returns the slope and intercept values of this line, allowing users to determine the overall direction of a market trend and identify potential support or resistance levels." }, "response": [ { "id": "89e3ba10-fac8-4cc7-b7c6-5dad3c85a3b8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"linearreg\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"linearreg\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-89e3ba10-fac8-4cc7-b7c6-5dad3c85a3b8" }, { "id": "625f3258-6b18-46d5-85ed-dc4762231282", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-625f3258-6b18-46d5-85ed-dc4762231282" }, { "id": "c8f5ec90-3462-4b0d-8373-93a3b0f6d854", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8f5ec90-3462-4b0d-8373-93a3b0f6d854" }, { "id": "7ebb8610-1ce7-4b40-a7aa-0db5a94093b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ebb8610-1ce7-4b40-a7aa-0db5a94093b2" }, { "id": "dfdd4eb5-753b-4041-ad92-910c49b3c556", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dfdd4eb5-753b-4041-ad92-910c49b3c556" }, { "id": "1aaa7f18-7b75-4540-a7d7-4c3ff5b6e84c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1aaa7f18-7b75-4540-a7d7-4c3ff5b6e84c" }, { "id": "8db7136e-1ebf-44e8-86a9-149ae9837baa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8db7136e-1ebf-44e8-86a9-149ae9837baa" }, { "id": "5a76c9a1-d0c7-4aba-93cf-c4ed6da6a847", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearreg?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearreg" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5a76c9a1-d0c7-4aba-93cf-c4ed6da6a847" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1e5f4c7f-1e8f-4a71-bd21-dd934645ac57" } ], "id": "3e308429-29fb-4460-abda-dd30e109b60a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3e308429-29fb-4460-abda-dd30e109b60a" }, { "name": "linearregangle", "item": [ { "name": "Linear regression angle", "id": "565594fd-5f2a-437b-b543-2d5b8bb436a7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Linear Regression Angle endpoint (LINEARREGANGLE) calculates the angle of the linear regression line for a given time series of stock prices. It returns the slope of the trend line, expressed in degrees, which helps users identify the direction and steepness of a trend over a specified period. This data is useful for detecting upward or downward trends in asset prices." }, "response": [ { "id": "107cd027-a173-4124-95da-69c06d050cf4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"linearregangle\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"linearregangle\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-107cd027-a173-4124-95da-69c06d050cf4" }, { "id": "87fb31cc-a518-4a27-bb12-6454e142f779", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87fb31cc-a518-4a27-bb12-6454e142f779" }, { "id": "4c6a8822-bf59-417b-a39a-fc7e177912fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c6a8822-bf59-417b-a39a-fc7e177912fc" }, { "id": "9e2ccff4-b19c-49e0-b2c6-6555cf036aa7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9e2ccff4-b19c-49e0-b2c6-6555cf036aa7" }, { "id": "38a85e95-ba5b-49df-90cd-a1f74625bb90", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38a85e95-ba5b-49df-90cd-a1f74625bb90" }, { "id": "ec0a0a40-b27f-421a-9d88-17d3f008b19a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec0a0a40-b27f-421a-9d88-17d3f008b19a" }, { "id": "91de4c60-82a8-40d8-b7f5-f394b49f91fb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91de4c60-82a8-40d8-b7f5-f394b49f91fb" }, { "id": "b9562bb6-9103-4c8a-ba2f-77b28c67d41b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregangle?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregangle" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b9562bb6-9103-4c8a-ba2f-77b28c67d41b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-565594fd-5f2a-437b-b543-2d5b8bb436a7" } ], "id": "80fa3593-b394-4aa4-a65c-dad735f7fd48", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-80fa3593-b394-4aa4-a65c-dad735f7fd48" }, { "name": "linearregintercept", "item": [ { "name": "Linear regression intercept", "id": "ff85e02f-eedb-4c7a-aa1b-b3bda2a05b63", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Linear Regression Intercept endpoint (LINEARREGINTERCEPT) calculates the y-intercept of a linear regression line for a given dataset. It returns the value where the regression line crosses the y-axis, providing a numerical reference point for understanding the starting position of a trend over a specified period. This can be useful for users needing to establish baseline values in their data analysis." }, "response": [ { "id": "a0d3254a-3d91-469c-a0be-78b024b773b4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"linearregintercept\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"linearregintercept\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a0d3254a-3d91-469c-a0be-78b024b773b4" }, { "id": "882cbf36-f6ef-44ec-81ea-fb8bba00cd23", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-882cbf36-f6ef-44ec-81ea-fb8bba00cd23" }, { "id": "e4f00183-418a-4b23-8195-7c0d3109c91b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e4f00183-418a-4b23-8195-7c0d3109c91b" }, { "id": "77960cb4-b86e-46fd-90c3-011517aa94ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-77960cb4-b86e-46fd-90c3-011517aa94ef" }, { "id": "2778d4bd-e45f-4da4-a9a7-1e816a4efc9c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2778d4bd-e45f-4da4-a9a7-1e816a4efc9c" }, { "id": "8e8232ab-334b-4a44-9246-2fecea6e5667", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e8232ab-334b-4a44-9246-2fecea6e5667" }, { "id": "64fd12ef-6daf-406b-85e7-c5b43d55f9b7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64fd12ef-6daf-406b-85e7-c5b43d55f9b7" }, { "id": "508eb776-ec0f-427f-a3e5-ed9c9f9ce9ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregintercept?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregintercept" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-508eb776-ec0f-427f-a3e5-ed9c9f9ce9ce" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff85e02f-eedb-4c7a-aa1b-b3bda2a05b63" } ], "id": "ffe0d49f-738e-450d-b4b2-30165181d552", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-ffe0d49f-738e-450d-b4b2-30165181d552" }, { "name": "linearregslope", "item": [ { "name": "Linear regression slope", "id": "4c20a42c-6405-4f6e-b78b-66a8ef4a3198", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Linear Regression Slope endpoint (LINEARREGSLOPE) calculates the slope of a linear regression line for a given dataset, reflecting the rate of change in the data trend over a specified period. It returns a numerical value representing this slope, which can be used to assess the direction and strength of the trend in the dataset." }, "response": [ { "id": "c4fadfbf-a801-469e-9f60-8b0220c81146", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"linearregslope\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"linearregslope\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c4fadfbf-a801-469e-9f60-8b0220c81146" }, { "id": "14e9e799-43f3-4844-adf0-305ef63b438c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-14e9e799-43f3-4844-adf0-305ef63b438c" }, { "id": "6fc505c0-1a4e-4a03-bd99-b031bd346eaf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6fc505c0-1a4e-4a03-bd99-b031bd346eaf" }, { "id": "a366639d-9b58-40c9-8a85-8f8f565caf45", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a366639d-9b58-40c9-8a85-8f8f565caf45" }, { "id": "43b62d57-5ac0-41d0-8b44-c85f7e759120", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-43b62d57-5ac0-41d0-8b44-c85f7e759120" }, { "id": "4b7488ef-62b2-4b05-98a7-60d15a29d9b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b7488ef-62b2-4b05-98a7-60d15a29d9b9" }, { "id": "397feffd-ebd2-4b6a-9b49-0e5c8a2ed1cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-397feffd-ebd2-4b6a-9b49-0e5c8a2ed1cc" }, { "id": "b85de6a6-fb6a-4bcc-bdbe-62ec4dff0232", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/linearregslope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "linearregslope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b85de6a6-fb6a-4bcc-bdbe-62ec4dff0232" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c20a42c-6405-4f6e-b78b-66a8ef4a3198" } ], "id": "a365210d-d198-4564-9839-dd287e1e9ed3", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a365210d-d198-4564-9839-dd287e1e9ed3" }, { "name": "ln", "item": [ { "name": "Natural logarithm", "id": "9d558cf5-de4d-4296-99d3-f163cd7934b8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Natural Logarithm (LN) endpoint computes the natural logarithm of a specified input value, returning a numerical result. This endpoint is useful for users needing to perform logarithmic transformations on data, which can be applied in various financial calculations and advanced mathematical analyses." }, "response": [ { "id": "cf9ac9d1-d7c6-40e5-98e6-2a4e23ed38fe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ln\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ln\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cf9ac9d1-d7c6-40e5-98e6-2a4e23ed38fe" }, { "id": "b72a74e6-8c00-4acf-8580-e022b955d45e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b72a74e6-8c00-4acf-8580-e022b955d45e" }, { "id": "886f8f97-d815-4506-89da-a57e82ec04dd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-886f8f97-d815-4506-89da-a57e82ec04dd" }, { "id": "8bde000f-ef51-4e3b-aeda-bc2b6dc036fe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8bde000f-ef51-4e3b-aeda-bc2b6dc036fe" }, { "id": "1c748c92-ebe8-4dd6-aa60-79232e3f463c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c748c92-ebe8-4dd6-aa60-79232e3f463c" }, { "id": "23addadb-392e-409b-a314-a6b7b47ae842", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-23addadb-392e-409b-a314-a6b7b47ae842" }, { "id": "9cf963e3-0c8b-4306-9c0b-c816e522d502", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9cf963e3-0c8b-4306-9c0b-c816e522d502" }, { "id": "ce8dbb8d-e2ae-4118-9166-3c7b2b53b68c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ln?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ln" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce8dbb8d-e2ae-4118-9166-3c7b2b53b68c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9d558cf5-de4d-4296-99d3-f163cd7934b8" } ], "id": "46318412-2f52-4b3a-be1b-c65ea1725269", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-46318412-2f52-4b3a-be1b-c65ea1725269" }, { "name": "log10", "item": [ { "name": "Base-10 logarithm", "id": "410960c9-8911-4c9d-aa36-9c475b5af128", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Base-10 Logarithm (LOG10) endpoint computes the base-10 logarithm of a specified input value. It returns a numerical result that represents the power to which the number 10 must be raised to obtain the input value. This endpoint is useful for transforming data into a logarithmic scale, which can simplify the analysis of exponential growth patterns or compress large ranges of data in financial calculations." }, "response": [ { "id": "75cd4450-3bdd-48cf-9d28-076913e9a0d5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"log10\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"log10\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-75cd4450-3bdd-48cf-9d28-076913e9a0d5" }, { "id": "d521d119-b709-4ba0-81be-e290ba67cb59", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d521d119-b709-4ba0-81be-e290ba67cb59" }, { "id": "8a7d8e80-c8f1-4046-b9b0-4e8b39344e08", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8a7d8e80-c8f1-4046-b9b0-4e8b39344e08" }, { "id": "111e5862-ff90-4c34-875f-fdca8e9b5eac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-111e5862-ff90-4c34-875f-fdca8e9b5eac" }, { "id": "985a7cb7-06df-421b-a517-cea4b4d99259", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-985a7cb7-06df-421b-a517-cea4b4d99259" }, { "id": "792010e1-4777-4158-81ff-4a5b918bb4f8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-792010e1-4777-4158-81ff-4a5b918bb4f8" }, { "id": "23f021c6-18dd-4791-872a-614bc0f8e2e0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-23f021c6-18dd-4791-872a-614bc0f8e2e0" }, { "id": "8aca5e88-37b4-43dc-af07-bc89b564dc67", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/log10?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "log10" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8aca5e88-37b4-43dc-af07-bc89b564dc67" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-410960c9-8911-4c9d-aa36-9c475b5af128" } ], "id": "fc095e2e-c353-4f9f-a8a3-86693349dbbf", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fc095e2e-c353-4f9f-a8a3-86693349dbbf" }, { "name": "logo", "item": [ { "name": "Logo", "id": "20ca7bfd-9013-4a43-971a-ca2bb8cf4ca3", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The logo endpoint provides the official logo image for a specified company, cryptocurrency, or forex pair. This endpoint is useful for integrating visual branding elements into financial applications, websites, or reports, ensuring that users can easily identify and associate the correct logo with the respective financial asset." }, "response": [ { "id": "5fd8924f-548c-4c17-bda6-5ee1229e1b8c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"symbol\": \"\",\n \"exchange\": \"\"\n },\n \"url\": \"\",\n \"logo_base\": \"\",\n \"logo_quote\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5fd8924f-548c-4c17-bda6-5ee1229e1b8c" }, { "id": "cb7ac0b8-5738-4b86-81ce-5b4668795a50", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cb7ac0b8-5738-4b86-81ce-5b4668795a50" }, { "id": "af3b001c-ba9b-4c52-b6b0-44ec6694a077", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-af3b001c-ba9b-4c52-b6b0-44ec6694a077" }, { "id": "1902d5f8-318b-4bac-8695-c900bc61b528", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1902d5f8-318b-4bac-8695-c900bc61b528" }, { "id": "cc54d6af-d35d-4dce-bf98-4c4772ef39db", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cc54d6af-d35d-4dce-bf98-4c4772ef39db" }, { "id": "30a5a626-40b6-4a18-bad7-956853c21104", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-30a5a626-40b6-4a18-bad7-956853c21104" }, { "id": "4888475f-2a1e-4ac1-8510-a736f8559b0a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4888475f-2a1e-4ac1-8510-a736f8559b0a" }, { "id": "3d1066cf-27d1-4827-b1cc-1487145aadcf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/logo?symbol=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "logo" ], "query": [ { "description": "(Required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`.", "key": "symbol", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3d1066cf-27d1-4827-b1cc-1487145aadcf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-20ca7bfd-9013-4a43-971a-ca2bb8cf4ca3" } ], "id": "019bb1a5-6900-4eb2-bc8f-925f3efb54bb", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-019bb1a5-6900-4eb2-bc8f-925f3efb54bb" }, { "name": "ma", "item": [ { "name": "Moving average", "id": "fe1e4190-e250-4dcb-9472-ae49fde14bfb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Moving Average (MA) endpoint provides the average price of a security over a specified time frame, offering a smoothed representation of price data. This endpoint returns the calculated moving average values, which can assist users in identifying price trends and potential support or resistance levels in the market." }, "response": [ { "id": "f49c783e-c030-4612-967b-8a0c5eca2d31", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"ma_type\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f49c783e-c030-4612-967b-8a0c5eca2d31" }, { "id": "77846a1e-d278-4021-88a0-eab48ca14b00", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-77846a1e-d278-4021-88a0-eab48ca14b00" }, { "id": "38f15cc4-d322-41b0-b692-16c291a6b418", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38f15cc4-d322-41b0-b692-16c291a6b418" }, { "id": "356407d0-bfe8-4faf-9a24-a00d84156ad2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-356407d0-bfe8-4faf-9a24-a00d84156ad2" }, { "id": "ded87807-0622-4f86-b74a-3772d71efbe9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ded87807-0622-4f86-b74a-3772d71efbe9" }, { "id": "4fd56d22-33f3-4946-b51b-5786ca2e00ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4fd56d22-33f3-4946-b51b-5786ca2e00ef" }, { "id": "2616aad6-8f51-4202-b337-d7db987f315f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2616aad6-8f51-4202-b337-d7db987f315f" }, { "id": "a61c4b3a-eba8-4cd9-901b-e3659ec7e891", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a61c4b3a-eba8-4cd9-901b-e3659ec7e891" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fe1e4190-e250-4dcb-9472-ae49fde14bfb" } ], "id": "41aac3b6-6c24-4f14-af9f-d6ad46859ae5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-41aac3b6-6c24-4f14-af9f-d6ad46859ae5" }, { "name": "macd", "item": [ { "name": "Moving average convergence divergence", "id": "915cccb5-c6f2-40f2-af9e-2a8e1fe39b1e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "This endpoint calculates the Moving Average Convergence Divergence (MACD) for a specified financial instrument. It returns the MACD line, signal line, and histogram values, which help users identify potential trend reversals and trading opportunities by analyzing the relationship between two moving averages." }, "response": [ { "id": "bd611c3f-dbd6-4934-8b27-cab934e13c99", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_period\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"signal_period\": \"\",\n \"slow_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"macd\": \"\",\n \"macd_hist\": \"\",\n \"macd_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"macd\": \"\",\n \"macd_hist\": \"\",\n \"macd_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bd611c3f-dbd6-4934-8b27-cab934e13c99" }, { "id": "4d333c5e-4cd1-455f-91cf-e8ca39496b8b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4d333c5e-4cd1-455f-91cf-e8ca39496b8b" }, { "id": "8bb38a7d-3b38-474b-a9bc-016ced6ff0f6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8bb38a7d-3b38-474b-a9bc-016ced6ff0f6" }, { "id": "61e59fa4-5d0b-4eb7-a594-0a89598b4c82", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-61e59fa4-5d0b-4eb7-a594-0a89598b4c82" }, { "id": "335dccfd-c4cd-459d-94e2-3688c11c7002", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-335dccfd-c4cd-459d-94e2-3688c11c7002" }, { "id": "62c6e689-7bd0-4a08-a199-3be3164e4ff7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62c6e689-7bd0-4a08-a199-3be3164e4ff7" }, { "id": "75d6a725-3b12-486c-bb13-c5a7f0daf057", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-75d6a725-3b12-486c-bb13-c5a7f0daf057" }, { "id": "2b126dc4-be85-400c-a58f-3960c1f9339e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2b126dc4-be85-400c-a58f-3960c1f9339e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-915cccb5-c6f2-40f2-af9e-2a8e1fe39b1e" } ], "id": "dd3ac93d-4f1c-4e89-b3c9-9b57da9f7748", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-dd3ac93d-4f1c-4e89-b3c9-9b57da9f7748" }, { "name": "macd_slope", "item": [ { "name": "Moving average convergence divergence slope", "id": "c0efe556-c480-48df-ab96-cd9a06ee0993", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Moving Average Convergence Divergence (MACD) Slope endpoint provides the rate of change of the MACD line for a given security. It returns data on how quickly the MACD line is rising or falling, offering insights into the momentum shifts in the security's price. This information is useful for traders looking to gauge the speed of price movements and potential trend reversals." }, "response": [ { "id": "232b78ee-79f9-49da-83ec-51bb8349d57e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_period\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"signal_period\": \"\",\n \"slow_period\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"macd_hist_slope\": \"\",\n \"macd_signal_slope\": \"\",\n \"macd_slope\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"macd_hist_slope\": \"\",\n \"macd_signal_slope\": \"\",\n \"macd_slope\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-232b78ee-79f9-49da-83ec-51bb8349d57e" }, { "id": "f82d0b97-ce69-46d5-acfc-baf426ee5fe0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f82d0b97-ce69-46d5-acfc-baf426ee5fe0" }, { "id": "1d9fae44-1a6f-465b-9193-8c6ff1422463", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1d9fae44-1a6f-465b-9193-8c6ff1422463" }, { "id": "62bf9155-5825-4591-a7e3-6a3d8b5f86a7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62bf9155-5825-4591-a7e3-6a3d8b5f86a7" }, { "id": "046ec231-4e7a-404e-b875-bbd1910a24ad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-046ec231-4e7a-404e-b875-bbd1910a24ad" }, { "id": "d10ccf55-51df-4b41-8824-de5fa7698ee4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d10ccf55-51df-4b41-8824-de5fa7698ee4" }, { "id": "7c2be00b-917e-41a7-b9e8-00f18c1e9f46", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7c2be00b-917e-41a7-b9e8-00f18c1e9f46" }, { "id": "08d28920-92b7-423a-b7f5-bd71ec2b8e2e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macd_slope?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&signal_period=9&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macd_slope" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-08d28920-92b7-423a-b7f5-bd71ec2b8e2e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c0efe556-c480-48df-ab96-cd9a06ee0993" } ], "id": "2091583c-de0e-40f7-8737-3d46141c6b34", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2091583c-de0e-40f7-8737-3d46141c6b34" }, { "name": "macdext", "item": [ { "name": "Moving average convergence divergence extension", "id": "087f3c1b-e605-49e5-92a3-0e26c2109dfe", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Moving Average Convergence Divergence Extension (MACDEXT) endpoint provides a customizable version of the MACD indicator, allowing users to specify different moving average types and parameters. It returns data that includes the MACD line, signal line, and histogram values, tailored to the user's chosen settings. This endpoint is useful for traders who require flexibility in analyzing price trends and momentum by adjusting the calculation methods to fit their specific trading strategies." }, "response": [ { "id": "6be472ff-8236-4707-b749-850a36ee6dfa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_ma_type\": \"\",\n \"fast_period\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"signal_ma_type\": \"\",\n \"signal_period\": \"\",\n \"slow_ma_type\": \"\",\n \"slow_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"macd\": \"\",\n \"macd_hist\": \"\",\n \"macd_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"macd\": \"\",\n \"macd_hist\": \"\",\n \"macd_signal\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6be472ff-8236-4707-b749-850a36ee6dfa" }, { "id": "3650ad81-1647-488c-aa0d-d8ca745db4d8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3650ad81-1647-488c-aa0d-d8ca745db4d8" }, { "id": "0e2e2b8d-ae92-4ce6-b972-6d6f0a923d8e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0e2e2b8d-ae92-4ce6-b972-6d6f0a923d8e" }, { "id": "07ff577e-ca6f-497b-8a2a-1abaca46ee60", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-07ff577e-ca6f-497b-8a2a-1abaca46ee60" }, { "id": "aed642e4-2428-42d7-afa2-ff5078d90344", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aed642e4-2428-42d7-afa2-ff5078d90344" }, { "id": "0a2618fd-ace1-4d64-818c-be24d350ae84", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0a2618fd-ace1-4d64-818c-be24d350ae84" }, { "id": "6bb7fdcf-76f9-4e02-88a6-a21f80497de8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6bb7fdcf-76f9-4e02-88a6-a21f80497de8" }, { "id": "550416a0-c932-4151-a0d7-79ff5d3c9b81", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/macdext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&fast_ma_type=SMA&slow_period=26&slow_ma_type=SMA&signal_period=9&signal_ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "macdext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "The type of fast moving average used in the calculation.", "key": "fast_ma_type", "value": "SMA" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of slow moving average used in the calculation.", "key": "slow_ma_type", "value": "SMA" }, { "description": "The time period used for generating the signal line.", "key": "signal_period", "value": "9" }, { "description": "The type of fast moving average used for generating the signal line.", "key": "signal_ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-550416a0-c932-4151-a0d7-79ff5d3c9b81" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-087f3c1b-e605-49e5-92a3-0e26c2109dfe" } ], "id": "d6222369-f3c4-47b7-97ce-8e7bdd1628f5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d6222369-f3c4-47b7-97ce-8e7bdd1628f5" }, { "name": "mama", "item": [ { "name": "MESA adaptive moving average", "id": "a6f1bebe-a683-4513-affe-4340a87ecd9f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The MESA Adaptive Moving Average (MAMA) endpoint calculates a moving average that adjusts to the dominant market cycle, offering a balance between quick response to price changes and noise reduction. It returns data that includes the adaptive moving average values, which can be used to identify trends and potential reversal points." }, "response": [ { "id": "8d56802e-0268-422d-b36d-03775bf61db0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_limit\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"slow_limit\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"fama\": \"\",\n \"mama\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"fama\": \"\",\n \"mama\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8d56802e-0268-422d-b36d-03775bf61db0" }, { "id": "febe49c9-db88-4b91-8158-0032913e334e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-febe49c9-db88-4b91-8158-0032913e334e" }, { "id": "8917344d-9796-42a3-9d9b-12ff3a87f715", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8917344d-9796-42a3-9d9b-12ff3a87f715" }, { "id": "2fac1f24-cd3f-469c-b286-1ec92c3271e9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fac1f24-cd3f-469c-b286-1ec92c3271e9" }, { "id": "2aab359b-8a39-43d8-9e72-dc08f3c0e2d2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2aab359b-8a39-43d8-9e72-dc08f3c0e2d2" }, { "id": "64ed4bb6-83bf-4b2b-b01f-1e86d9e4a745", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64ed4bb6-83bf-4b2b-b01f-1e86d9e4a745" }, { "id": "54c8ba23-c9e9-4eb5-b6a3-37c0bee831a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-54c8ba23-c9e9-4eb5-b6a3-37c0bee831a2" }, { "id": "4d2cebad-847a-48ba-84ab-5e90285eff4f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mama?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_limit=0.5&slow_limit=0.05&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mama" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The limit for the fast moving average.", "key": "fast_limit", "value": "0.5" }, { "description": "The limit for the slow moving average.", "key": "slow_limit", "value": "0.05" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4d2cebad-847a-48ba-84ab-5e90285eff4f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a6f1bebe-a683-4513-affe-4340a87ecd9f" } ], "id": "1d68ec66-0aa5-4591-a9b7-5f72a1994cd0", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1d68ec66-0aa5-4591-a9b7-5f72a1994cd0" }, { "name": "market_cap", "item": [ { "name": "Market capitalization", "id": "a8837ba3-41e5-4d34-a200-7ecf717c71dc", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] }, "description": "The Market Capitalization History endpoint provides historical data on a company's market capitalization over a specified time period. It returns a time series of market cap values, allowing users to track changes in a company's market value." }, "response": [ { "id": "364e58c8-0aad-4d7d-80b3-491f8b00ccd7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"market_cap\": [\n {\n \"date\": \"\",\n \"value\": \"\"\n },\n {\n \"date\": \"\",\n \"value\": \"\"\n }\n ],\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-364e58c8-0aad-4d7d-80b3-491f8b00ccd7" }, { "id": "651802ae-fb1a-494c-b1ed-b7d92d5eae58", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-651802ae-fb1a-494c-b1ed-b7d92d5eae58" }, { "id": "5cae5a93-600b-4102-bde1-5b9b2ea8d8b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5cae5a93-600b-4102-bde1-5b9b2ea8d8b2" }, { "id": "50e3c45d-890a-47b0-beb6-7eb923727eef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-50e3c45d-890a-47b0-beb6-7eb923727eef" }, { "id": "c519090c-12ef-4f0a-9212-66233c7742b3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c519090c-12ef-4f0a-9212-66233c7742b3" }, { "id": "e16934fe-4c8d-4deb-b30c-4422af3c7f76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e16934fe-4c8d-4deb-b30c-4422af3c7f76" }, { "id": "645ca688-91b6-4cf3-8ec4-263590854d6a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-645ca688-91b6-4cf3-8ec4-263590854d6a" }, { "id": "d6367ec4-ce6e-4ce0-aae2-8b957ee29667", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_cap?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&page=1&outputsize=10", "host": [ "{{baseUrl}}" ], "path": [ "market_cap" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Start date for market capitalization data retrieval.\nData will be returned from this date onwards.\nFormat `2006-01-02`", "key": "start_date", "value": "" }, { "description": "End date for market capitalization data retrieval.\nData will be returned up to and including this date.\nFormat `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "10" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d6367ec4-ce6e-4ce0-aae2-8b957ee29667" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8837ba3-41e5-4d34-a200-7ecf717c71dc" } ], "id": "f7bd5fa3-dd27-4f1e-8361-43c5ab1d60f8", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f7bd5fa3-dd27-4f1e-8361-43c5ab1d60f8" }, { "name": "market_movers", "item": [ { "name": "{market}", "item": [ { "name": "Market movers", "id": "cacc6175-f138-4ea7-89a8-8ae5f60c408e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "id": "36abe5cd-ef1f-4007-a35b-d858a166a726", "key": "market", "value": "etf", "description": "(Required) Market type" } ] }, "description": "The market movers endpoint provides a ranked list of the top-gaining and losing assets for the current trading day. It returns detailed data on the highest percentage price increases and decreases since the previous day's close. This endpoint supports international equities, forex, and cryptocurrencies, enabling users to quickly identify significant market movements across various asset classes." }, "response": [ { "id": "a5257a31-026f-4a8c-991e-4df81986494e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"status\": \"\",\n \"values\": [\n {\n \"change\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"last\": \"\",\n \"low\": \"\",\n \"name\": \"\",\n \"percent_change\": \"\",\n \"symbol\": \"\",\n \"volume\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n {\n \"change\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"last\": \"\",\n \"low\": \"\",\n \"name\": \"\",\n \"percent_change\": \"\",\n \"symbol\": \"\",\n \"volume\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a5257a31-026f-4a8c-991e-4df81986494e" }, { "id": "6d6f70b9-7d5e-4859-9ce3-d2f5e817e6e1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6d6f70b9-7d5e-4859-9ce3-d2f5e817e6e1" }, { "id": "1df3e917-ca1f-441e-8d7c-d29f183f23c3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1df3e917-ca1f-441e-8d7c-d29f183f23c3" }, { "id": "9355143a-3f60-4b18-b866-afb944c4e3de", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9355143a-3f60-4b18-b866-afb944c4e3de" }, { "id": "9889912c-91fc-47c2-8975-018aa1ed5e9e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9889912c-91fc-47c2-8975-018aa1ed5e9e" }, { "id": "37caef34-b2c5-471a-b121-479d0ad2c8ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-37caef34-b2c5-471a-b121-479d0ad2c8ce" }, { "id": "556b9f85-cb16-4fa4-9524-e993b596256d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-556b9f85-cb16-4fa4-9524-e993b596256d" }, { "id": "2309e54d-c6c4-4483-9ee1-dcbaf5a8d998", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_movers/:market?direction=gainers&outputsize=30&country=USA&price_greater_than=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "market_movers", ":market" ], "query": [ { "description": "Specifies direction of the snapshot gainers or losers", "key": "direction", "value": "gainers" }, { "description": "Specifies the size of the snapshot.\nCan be in a range from `1` to `50`", "key": "outputsize", "value": "30" }, { "description": "Country of the snapshot, applicable to non-currencies only.\nTakes country name or alpha code", "key": "country", "value": "USA" }, { "description": "Takes values with price grater than specified value", "key": "price_greater_than", "value": "" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ], "variable": [ { "key": "market" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2309e54d-c6c4-4483-9ee1-dcbaf5a8d998" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cacc6175-f138-4ea7-89a8-8ae5f60c408e" } ], "id": "4e6d5672-61de-4f05-a18f-b068677a0fe5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-4e6d5672-61de-4f05-a18f-b068677a0fe5" } ], "id": "a1b67976-cd3c-4d04-b684-bd31e6a142ea", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a1b67976-cd3c-4d04-b684-bd31e6a142ea" }, { "name": "market_state", "item": [ { "name": "Market state", "id": "bdba7ca1-24ed-412e-8d3b-2b97248774a2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] }, "description": "The market state endpoint provides real-time information on the operational status of all available stock exchanges. It returns data on whether each exchange is currently open or closed, along with the time remaining until the next opening or closing. This endpoint is useful for users who need to monitor exchange hours and plan their trading activities accordingly." }, "response": [ { "id": "ad3cd9ed-750a-4869-85d4-7972f22a5367", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "[\n {\n \"code\": \"\",\n \"country\": \"\",\n \"is_market_open\": \"\",\n \"name\": \"\",\n \"time_after_open\": \"\",\n \"time_to_close\": \"\",\n \"time_to_open\": \"\"\n },\n {\n \"code\": \"\",\n \"country\": \"\",\n \"is_market_open\": \"\",\n \"name\": \"\",\n \"time_after_open\": \"\",\n \"time_to_close\": \"\",\n \"time_to_open\": \"\"\n }\n]", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ad3cd9ed-750a-4869-85d4-7972f22a5367" }, { "id": "48650058-aa85-47a5-918d-6d09e73a0007", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-48650058-aa85-47a5-918d-6d09e73a0007" }, { "id": "7d6d9065-a1d4-42b7-ba00-b0cd5f81652d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7d6d9065-a1d4-42b7-ba00-b0cd5f81652d" }, { "id": "a47d6555-e690-49f1-b535-0b9d4781c4f7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a47d6555-e690-49f1-b535-0b9d4781c4f7" }, { "id": "da25f812-5883-4ac4-a1e7-9b6c2e836b39", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-da25f812-5883-4ac4-a1e7-9b6c2e836b39" }, { "id": "efee1bd9-67b3-440a-ac7d-2a3c95a370c3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-efee1bd9-67b3-440a-ac7d-2a3c95a370c3" }, { "id": "b49adc18-4ecd-423c-82fd-1429c919d303", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b49adc18-4ecd-423c-82fd-1429c919d303" }, { "id": "bf6e729b-7478-4ca1-8f43-33a1ef206e1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/market_state?exchange=&code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "market_state" ], "query": [ { "description": "The exchange name where the instrument is traded.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded.", "key": "code", "value": "" }, { "description": "The country where the exchange is located. Takes country name or alpha code.", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bf6e729b-7478-4ca1-8f43-33a1ef206e1a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bdba7ca1-24ed-412e-8d3b-2b97248774a2" } ], "id": "1ec9337a-b48c-4bd9-a949-05f0aa1a3108", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1ec9337a-b48c-4bd9-a949-05f0aa1a3108" }, { "name": "max", "item": [ { "name": "Maximum", "id": "08137c1c-04a5-48d8-b98e-9a06af70857b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Maximum (MAX) endpoint calculates and returns the highest value within a specified data series over a given period. This endpoint is useful for identifying potential resistance levels or detecting extreme price movements in financial data." }, "response": [ { "id": "7b575632-85e7-44d5-8b12-4118b0b5f7b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"max\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"max\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b575632-85e7-44d5-8b12-4118b0b5f7b9" }, { "id": "f43db4a3-ec7c-4eac-adb1-e011de6ff4ac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f43db4a3-ec7c-4eac-adb1-e011de6ff4ac" }, { "id": "994f6dc7-b81e-4cb9-b6b4-dcffd30301c5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-994f6dc7-b81e-4cb9-b6b4-dcffd30301c5" }, { "id": "fc8238a0-dd05-4e4f-b123-6e248b84dc6c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc8238a0-dd05-4e4f-b123-6e248b84dc6c" }, { "id": "4ebfdee3-bc8d-4eb2-a3d5-eae71a721812", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ebfdee3-bc8d-4eb2-a3d5-eae71a721812" }, { "id": "2a1b20a0-5511-4c79-9319-71ba9ce58563", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a1b20a0-5511-4c79-9319-71ba9ce58563" }, { "id": "6f355274-ca0a-4f67-b5d9-2f3a2e29a158", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6f355274-ca0a-4f67-b5d9-2f3a2e29a158" }, { "id": "d6fa974f-80c7-47f2-8bb4-fe1f1c126c72", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/max?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "max" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d6fa974f-80c7-47f2-8bb4-fe1f1c126c72" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-08137c1c-04a5-48d8-b98e-9a06af70857b" } ], "id": "f3ae6796-d8d5-4868-b992-2e80ffee5b85", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f3ae6796-d8d5-4868-b992-2e80ffee5b85" }, { "name": "maxindex", "item": [ { "name": "Maximum Index", "id": "49120603-b03f-4f03-a945-2ac8c41933ec", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Maximum Index (MAXINDEX) endpoint identifies the position of the highest value within a specified data series over a given time frame. It returns the index where the peak value occurs, allowing users to pinpoint when the maximum price or value was reached in the series. This is useful for tracking the timing of significant peaks in financial data." }, "response": [ { "id": "d02102d2-d1e6-4741-ad8a-0619e281389f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"maxidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"maxidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d02102d2-d1e6-4741-ad8a-0619e281389f" }, { "id": "ddcacce5-fb15-421c-a833-ac20b7192dfb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ddcacce5-fb15-421c-a833-ac20b7192dfb" }, { "id": "bd1501f9-c487-4e12-9e3c-129f5e53f890", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bd1501f9-c487-4e12-9e3c-129f5e53f890" }, { "id": "1eb39c9d-4b73-4ead-b410-6410d8f2fa93", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1eb39c9d-4b73-4ead-b410-6410d8f2fa93" }, { "id": "7ab77115-891e-467b-a3b9-5be66dbe4fd9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ab77115-891e-467b-a3b9-5be66dbe4fd9" }, { "id": "0456a21b-42f3-487d-be07-98d6da7088e5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0456a21b-42f3-487d-be07-98d6da7088e5" }, { "id": "4075ac0e-88bb-485c-8d75-c06735ecae11", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4075ac0e-88bb-485c-8d75-c06735ecae11" }, { "id": "e5569c8b-c8db-41ae-832b-a464aed3d007", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/maxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "maxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e5569c8b-c8db-41ae-832b-a464aed3d007" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-49120603-b03f-4f03-a945-2ac8c41933ec" } ], "id": "7f6dac1b-91ae-4a55-9e01-1cb645ecc35f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-7f6dac1b-91ae-4a55-9e01-1cb645ecc35f" }, { "name": "mcginley_dynamic", "item": [ { "name": "McGinley dynamic indicator", "id": "58e41e4f-50c5-4528-b384-3b9f956f4663", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "This endpoint calculates the McGinley Dynamic (MCGINLEY_DYNAMIC) indicator, which provides a refined moving average that adapts to market volatility. This endpoint returns data that reflects smoother price trends and identifies potential support or resistance levels more accurately than traditional moving averages. It is useful for users seeking to track price movements with reduced lag and enhanced responsiveness to market changes." }, "response": [ { "id": "ed5e2d90-0a2e-4d0a-9b68-e01b52f97a59", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"mcginley_dynamic\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"mcginley_dynamic\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed5e2d90-0a2e-4d0a-9b68-e01b52f97a59" }, { "id": "80724f1d-52f8-4d5f-8cbf-854530617a60", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-80724f1d-52f8-4d5f-8cbf-854530617a60" }, { "id": "a8a5cd96-5312-4257-8787-72ff04cf0820", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8a5cd96-5312-4257-8787-72ff04cf0820" }, { "id": "6c824ac5-24c8-472e-a54d-57c7c85106c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6c824ac5-24c8-472e-a54d-57c7c85106c2" }, { "id": "0cca8640-b2a7-4458-afd4-3b11bb9e1fc1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0cca8640-b2a7-4458-afd4-3b11bb9e1fc1" }, { "id": "cd40aa73-e1ab-4953-91e5-648844f2f1f2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cd40aa73-e1ab-4953-91e5-648844f2f1f2" }, { "id": "2fb50619-60d3-47a2-be6d-b0da8d28ff5c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fb50619-60d3-47a2-be6d-b0da8d28ff5c" }, { "id": "202bdef7-058a-473b-8fe8-911ad7680d4b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mcginley_dynamic?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mcginley_dynamic" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-202bdef7-058a-473b-8fe8-911ad7680d4b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58e41e4f-50c5-4528-b384-3b9f956f4663" } ], "id": "21186a07-ac98-40ff-b2c6-79c15e8677c4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-21186a07-ac98-40ff-b2c6-79c15e8677c4" }, { "name": "medprice", "item": [ { "name": "Median price", "id": "9578d931-9d88-4ce2-b8bf-3f2d6f17d7c0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Median Price (MEDPRICE) endpoint calculates and returns the average of the high and low prices of a security for a specified period. This endpoint provides a simplified view of price movements, helping users quickly assess price trends by focusing on the midpoint of price action." }, "response": [ { "id": "b8aacffc-f561-43c9-ac9b-82bd1adf34e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"medprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"medprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b8aacffc-f561-43c9-ac9b-82bd1adf34e8" }, { "id": "7b73973a-dd57-4acb-9d48-505615c993a6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b73973a-dd57-4acb-9d48-505615c993a6" }, { "id": "8215acee-efe4-4c78-9cbd-c4367dcb4294", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8215acee-efe4-4c78-9cbd-c4367dcb4294" }, { "id": "25b65c4f-d473-4f61-a618-6bf7c45883d4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-25b65c4f-d473-4f61-a618-6bf7c45883d4" }, { "id": "d15e8587-58be-44cf-9b20-14ea7aeba4ad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d15e8587-58be-44cf-9b20-14ea7aeba4ad" }, { "id": "3ca2752f-509a-4051-9611-d6d6f0d111bf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3ca2752f-509a-4051-9611-d6d6f0d111bf" }, { "id": "fb2b6d6e-ae76-4778-9f28-87abd358b398", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fb2b6d6e-ae76-4778-9f28-87abd358b398" }, { "id": "f327cf93-dab5-43bd-81f4-e6cb9ff6c3df", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/medprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "medprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f327cf93-dab5-43bd-81f4-e6cb9ff6c3df" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9578d931-9d88-4ce2-b8bf-3f2d6f17d7c0" } ], "id": "98d3a59e-13a7-4be1-aaa7-c345315df332", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-98d3a59e-13a7-4be1-aaa7-c345315df332" }, { "name": "mfi", "item": [ { "name": "Money flow index", "id": "117ff64a-8e15-4886-bf11-7bfc316c9b61", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Money Flow Index (MFI) endpoint provides a volume-weighted momentum oscillator that quantifies buying and selling pressure by analyzing positive and negative money flow. It returns data indicating potential overbought or oversold conditions in a financial asset, aiding users in understanding market trends and price movements." }, "response": [ { "id": "505d5c31-2400-451d-862d-7306c567d1b0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"mfi\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"mfi\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-505d5c31-2400-451d-862d-7306c567d1b0" }, { "id": "2510d4b8-ae7d-4bfa-ab85-b55710550626", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2510d4b8-ae7d-4bfa-ab85-b55710550626" }, { "id": "4912f8df-6ab9-4bec-97e0-696b3a0cf38c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4912f8df-6ab9-4bec-97e0-696b3a0cf38c" }, { "id": "aaf538b7-c23d-495b-bd3c-469f94575ac3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aaf538b7-c23d-495b-bd3c-469f94575ac3" }, { "id": "6f0638f6-a8c8-4ae3-a561-efb4708cba20", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6f0638f6-a8c8-4ae3-a561-efb4708cba20" }, { "id": "eb7a00b5-0fdf-42a0-bdc8-a6ca5367aaa5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eb7a00b5-0fdf-42a0-bdc8-a6ca5367aaa5" }, { "id": "7705562f-e91d-41cb-a671-64838d701fa0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7705562f-e91d-41cb-a671-64838d701fa0" }, { "id": "8f977f08-38bd-4645-a954-c0aed08fe7bf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mfi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mfi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8f977f08-38bd-4645-a954-c0aed08fe7bf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-117ff64a-8e15-4886-bf11-7bfc316c9b61" } ], "id": "1a479962-622c-4ab6-be30-f03e790ae070", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1a479962-622c-4ab6-be30-f03e790ae070" }, { "name": "midpoint", "item": [ { "name": "Midpoint", "id": "ac28dcac-961d-4831-83c6-ffca979fa324", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Midpoint (MIDPOINT) endpoint calculates the average value between the highest and lowest prices of a financial instrument over a specified period. It returns a time series of midpoint values, which can help users identify price trends and smooth out short-term fluctuations in the data." }, "response": [ { "id": "60f83c08-357e-4b20-b3ae-04af6380bb01", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"midpoint\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"midpoint\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-60f83c08-357e-4b20-b3ae-04af6380bb01" }, { "id": "11325893-d062-403b-8cb8-b1ed569a2af6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-11325893-d062-403b-8cb8-b1ed569a2af6" }, { "id": "ccd931a6-b95d-410e-8074-e73c2a043f76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ccd931a6-b95d-410e-8074-e73c2a043f76" }, { "id": "eb1ade66-5729-42b3-9800-ccf73e9125dc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eb1ade66-5729-42b3-9800-ccf73e9125dc" }, { "id": "cd983c77-2826-493e-b06a-69a6b99715c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cd983c77-2826-493e-b06a-69a6b99715c2" }, { "id": "47a42180-62af-4528-afc5-7fbd029566c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-47a42180-62af-4528-afc5-7fbd029566c4" }, { "id": "2a6dc152-d848-4308-948b-7af5db69c6e4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a6dc152-d848-4308-948b-7af5db69c6e4" }, { "id": "30bd35d3-f6bf-4a59-9fc7-661f82933998", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midpoint?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midpoint" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-30bd35d3-f6bf-4a59-9fc7-661f82933998" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ac28dcac-961d-4831-83c6-ffca979fa324" } ], "id": "02c7587a-008a-4d64-bbd1-cb2d1e0b48f8", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-02c7587a-008a-4d64-bbd1-cb2d1e0b48f8" }, { "name": "midprice", "item": [ { "name": "Midprice", "id": "fec448df-a256-4fd0-8fc2-8af943f39b9d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Midprice (MIDPRICE) endpoint calculates and returns the average of a financial instrument's highest and lowest prices over a specified time period. This data provides a smoothed representation of price movements, helping users identify potential support or resistance levels in the market." }, "response": [ { "id": "199bc839-0185-4b27-9276-6dd2f2a3df34", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"midprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"midprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-199bc839-0185-4b27-9276-6dd2f2a3df34" }, { "id": "db0e7c99-6f5c-4991-b17f-11bf1487f121", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-db0e7c99-6f5c-4991-b17f-11bf1487f121" }, { "id": "b5622aba-45a8-40cf-a46d-daa394f9d513", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b5622aba-45a8-40cf-a46d-daa394f9d513" }, { "id": "7266fd15-477f-48bb-a783-2290ac92f085", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7266fd15-477f-48bb-a783-2290ac92f085" }, { "id": "c9d32583-4e08-4942-b14a-7c0e4dacf128", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c9d32583-4e08-4942-b14a-7c0e4dacf128" }, { "id": "93361b91-92f6-48e8-bf3c-fb7f2f520187", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93361b91-92f6-48e8-bf3c-fb7f2f520187" }, { "id": "4ec2f5d2-b318-4736-ae3a-992be59f52eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4ec2f5d2-b318-4736-ae3a-992be59f52eb" }, { "id": "0da0f7bb-7dde-4c57-b346-503e06c0c20f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/midprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "midprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0da0f7bb-7dde-4c57-b346-503e06c0c20f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fec448df-a256-4fd0-8fc2-8af943f39b9d" } ], "id": "712e4b95-d3ef-4e90-92f1-f5634c745760", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-712e4b95-d3ef-4e90-92f1-f5634c745760" }, { "name": "min", "item": [ { "name": "Minimum", "id": "6e784fee-cb6a-4757-9597-1df80c55e9b0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minimum (MIN) Indicator endpoint provides the lowest value of a specified data series over a chosen time period. This endpoint is useful for identifying potential support levels or detecting extreme price movements in financial data." }, "response": [ { "id": "2695f875-aea6-4f16-ba6c-55e2a7a6f901", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"min\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"min\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2695f875-aea6-4f16-ba6c-55e2a7a6f901" }, { "id": "7785f8b8-ae72-4a87-afa8-41ae5e6ffaba", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7785f8b8-ae72-4a87-afa8-41ae5e6ffaba" }, { "id": "3a6e6d34-508b-43b5-b615-6347704bd3ca", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3a6e6d34-508b-43b5-b615-6347704bd3ca" }, { "id": "8c735be7-06ad-4d61-905d-3765f71cc758", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8c735be7-06ad-4d61-905d-3765f71cc758" }, { "id": "8addb5e1-7b77-4bf0-96fc-475b6b94ab9a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8addb5e1-7b77-4bf0-96fc-475b6b94ab9a" }, { "id": "e0ee92a7-afd2-492b-b93a-94f0a8069137", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e0ee92a7-afd2-492b-b93a-94f0a8069137" }, { "id": "d60362bc-89ec-4a51-9cf4-bb36683bd7e6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d60362bc-89ec-4a51-9cf4-bb36683bd7e6" }, { "id": "a9eec109-a46e-4129-a785-dea4c631d2d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/min?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "min" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a9eec109-a46e-4129-a785-dea4c631d2d6" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6e784fee-cb6a-4757-9597-1df80c55e9b0" } ], "id": "401f040d-f1cc-49f8-9b8d-45c1054aace4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-401f040d-f1cc-49f8-9b8d-45c1054aace4" }, { "name": "minindex", "item": [ { "name": "Minimum index", "id": "e2c37fe0-ca8a-432c-a3db-256d3dde01f0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minimum Index (MININDEX) endpoint identifies the position of the lowest value within a specified data series over a given time frame. It returns the index number corresponding to the earliest occurrence of this minimum value. This is useful for pinpointing when the lowest price or value occurred in a dataset, aiding in time-based analysis of data trends." }, "response": [ { "id": "3406c367-7678-4e25-8a29-122f9ff50645", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"minidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"minidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3406c367-7678-4e25-8a29-122f9ff50645" }, { "id": "221385ca-ad70-4589-87d1-3c56b8c69dbc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-221385ca-ad70-4589-87d1-3c56b8c69dbc" }, { "id": "343e67ef-7d1b-4e8d-9724-f38c631ca18d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-343e67ef-7d1b-4e8d-9724-f38c631ca18d" }, { "id": "5038bfcd-6dc5-4f52-82c9-d45e072c3cd2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5038bfcd-6dc5-4f52-82c9-d45e072c3cd2" }, { "id": "42cfbc12-8e28-4f67-855b-2d301e0615ea", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-42cfbc12-8e28-4f67-855b-2d301e0615ea" }, { "id": "2d11e396-bda4-4a4e-9183-41416ce112b1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2d11e396-bda4-4a4e-9183-41416ce112b1" }, { "id": "7534022d-bd70-4cdb-8da1-33146dd2d72a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7534022d-bd70-4cdb-8da1-33146dd2d72a" }, { "id": "7727b5e8-5980-46bd-808c-97b644b8a4ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7727b5e8-5980-46bd-808c-97b644b8a4ef" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e2c37fe0-ca8a-432c-a3db-256d3dde01f0" } ], "id": "463d5e32-37d7-4c6a-a615-141e75a77dfe", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-463d5e32-37d7-4c6a-a615-141e75a77dfe" }, { "name": "minmax", "item": [ { "name": "Minimum and maximum", "id": "b6b68738-a175-4eaa-acef-7f193196d36b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minimum and Maximum (MINMAX) endpoint identifies the lowest and highest values within a specified time frame for a given data series. It returns these extreme values, which can be used to detect potential support and resistance levels or significant price fluctuations in the data." }, "response": [ { "id": "4551f887-0c3e-4530-9870-892d962c866b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"max\": \"\",\n \"min\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"max\": \"\",\n \"min\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4551f887-0c3e-4530-9870-892d962c866b" }, { "id": "647b625e-033d-46b5-9c86-f5d0f4dcf3fb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-647b625e-033d-46b5-9c86-f5d0f4dcf3fb" }, { "id": "52141d93-a9ce-4e31-8b01-7247f0628daf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-52141d93-a9ce-4e31-8b01-7247f0628daf" }, { "id": "2cbff293-4bcf-4011-9910-37b72cc0222a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2cbff293-4bcf-4011-9910-37b72cc0222a" }, { "id": "91f3224d-ab4f-420a-9f74-f6fb4e5b8c4b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91f3224d-ab4f-420a-9f74-f6fb4e5b8c4b" }, { "id": "51da9241-9ddd-4f95-ab48-686810d52d4e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-51da9241-9ddd-4f95-ab48-686810d52d4e" }, { "id": "9fdf0712-17c6-4b49-8b07-52dbceebbeac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9fdf0712-17c6-4b49-8b07-52dbceebbeac" }, { "id": "8caff27b-6fba-4e0c-a9d1-872f9fa47cb8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmax?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmax" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8caff27b-6fba-4e0c-a9d1-872f9fa47cb8" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b6b68738-a175-4eaa-acef-7f193196d36b" } ], "id": "e5ecc49e-ff4a-49ef-a437-0ce9d0dd4452", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e5ecc49e-ff4a-49ef-a437-0ce9d0dd4452" }, { "name": "minmaxindex", "item": [ { "name": "Minimum and maximum index", "id": "9548549f-e507-4171-94c5-c01100edbe13", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minimum and Maximum Index (MINMAXINDEX) endpoint identifies the positions of the lowest and highest values within a specified data series period. It returns indices that indicate when these extreme values occur, allowing users to pinpoint significant price changes over time." }, "response": [ { "id": "59035ab7-fa47-4d5c-83b0-5e43c2acfe1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"maxidx\": \"\",\n \"minidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"maxidx\": \"\",\n \"minidx\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-59035ab7-fa47-4d5c-83b0-5e43c2acfe1a" }, { "id": "9e811a12-774a-4a9e-bf34-5e047fcaa185", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9e811a12-774a-4a9e-bf34-5e047fcaa185" }, { "id": "8ecc0d44-f992-4119-bcfe-620805e4ece8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8ecc0d44-f992-4119-bcfe-620805e4ece8" }, { "id": "dc501e98-ea0d-4e04-92c6-4f21c421b9a1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dc501e98-ea0d-4e04-92c6-4f21c421b9a1" }, { "id": "5ee7aafc-e2b9-445e-af7b-537a3ae3b65f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ee7aafc-e2b9-445e-af7b-537a3ae3b65f" }, { "id": "b5e50200-de10-4b1a-b86e-14c8b9264a1e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b5e50200-de10-4b1a-b86e-14c8b9264a1e" }, { "id": "1bc07409-a5d6-4755-ba46-a4f0757e84a6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1bc07409-a5d6-4755-ba46-a4f0757e84a6" }, { "id": "503bb3f8-71ad-4270-9719-09e306ce8fe3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minmaxindex?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minmaxindex" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-503bb3f8-71ad-4270-9719-09e306ce8fe3" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9548549f-e507-4171-94c5-c01100edbe13" } ], "id": "22a568ba-1d79-4809-a36f-59c35d0294aa", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-22a568ba-1d79-4809-a36f-59c35d0294aa" }, { "name": "minus_di", "item": [ { "name": "Minus directional indicator", "id": "2d87b65f-5600-4517-953b-ee6eac01af04", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minus Directional Indicator (MINUS_DI) endpoint calculates and returns the strength of a security's downward price movement over a specified period. This data is useful for traders and analysts looking to identify bearish trends and assess the intensity of price declines in financial markets." }, "response": [ { "id": "888caf8e-166f-46f4-bb27-7e3c7dc4352b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"minus_di\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"minus_di\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-888caf8e-166f-46f4-bb27-7e3c7dc4352b" }, { "id": "a9265f03-c3ba-4fc8-91db-3c823746320e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a9265f03-c3ba-4fc8-91db-3c823746320e" }, { "id": "d52220e3-3770-4d64-b055-ff3393fb531e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d52220e3-3770-4d64-b055-ff3393fb531e" }, { "id": "43460213-c7ab-4986-be0a-d697be470d5c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-43460213-c7ab-4986-be0a-d697be470d5c" }, { "id": "6eebe6ee-79f1-4934-9323-6843f9faa59c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6eebe6ee-79f1-4934-9323-6843f9faa59c" }, { "id": "314cc2c0-ae9b-4a28-81dd-bb5dd5c565a4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-314cc2c0-ae9b-4a28-81dd-bb5dd5c565a4" }, { "id": "b8c9ceaa-ebb9-4a62-bb9c-cf54cd4cf485", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b8c9ceaa-ebb9-4a62-bb9c-cf54cd4cf485" }, { "id": "62dbade5-960c-4f3e-8144-0e1849f23bad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62dbade5-960c-4f3e-8144-0e1849f23bad" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2d87b65f-5600-4517-953b-ee6eac01af04" } ], "id": "0f9c79e3-8226-4cb7-8890-f1f80132325a", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0f9c79e3-8226-4cb7-8890-f1f80132325a" }, { "name": "minus_dm", "item": [ { "name": "Minus directional movement", "id": "1db19b9d-b8bc-4985-ac68-b3685805a563", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Minus Directional Movement endpoint (MINUS_DM) calculates the downward price movement of a security over a specified period. It returns a series of values indicating the strength of downward trends, useful for traders to identify potential selling opportunities or confirm bearish market conditions." }, "response": [ { "id": "34a68639-3b36-4d12-ae16-d16c3bd64e6b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"minus_dm\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"minus_dm\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-34a68639-3b36-4d12-ae16-d16c3bd64e6b" }, { "id": "a8eb0525-425d-4656-b6a0-cd9eba196f1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8eb0525-425d-4656-b6a0-cd9eba196f1a" }, { "id": "5c4f8206-9669-43af-a258-d65d29ff60f0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5c4f8206-9669-43af-a258-d65d29ff60f0" }, { "id": "b44e6242-1e8d-4e20-8199-90097b2d432e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b44e6242-1e8d-4e20-8199-90097b2d432e" }, { "id": "1a4c6db1-4f36-4bcc-be4c-25aa79dee668", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1a4c6db1-4f36-4bcc-be4c-25aa79dee668" }, { "id": "82c5ba13-f3d7-4c30-9a61-4840003d523f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-82c5ba13-f3d7-4c30-9a61-4840003d523f" }, { "id": "acc11808-f3cc-4a95-b8ac-2a3b7bf1c848", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-acc11808-f3cc-4a95-b8ac-2a3b7bf1c848" }, { "id": "3a9e3fb5-0e62-491b-bd6d-62acacce1082", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/minus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "minus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3a9e3fb5-0e62-491b-bd6d-62acacce1082" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1db19b9d-b8bc-4985-ac68-b3685805a563" } ], "id": "4ecb2180-0079-45bb-ad09-e3fcaf60de14", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-4ecb2180-0079-45bb-ad09-e3fcaf60de14" }, { "name": "mom", "item": [ { "name": "Momentum", "id": "6742eded-9d39-4855-a511-87c875c95bfa", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Momentum (MOM) endpoint provides data on the rate of change in a security's price over a user-defined period. It returns a series of numerical values indicating the speed and direction of the price movement, which can help users detect emerging trends or potential reversals in the market." }, "response": [ { "id": "ba6a410a-83ac-4648-9f9b-a7d6c8ba21e7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"mom\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"mom\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ba6a410a-83ac-4648-9f9b-a7d6c8ba21e7" }, { "id": "edb3c561-7adf-4315-80f8-2a167002ea7c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-edb3c561-7adf-4315-80f8-2a167002ea7c" }, { "id": "41456f92-291d-48e0-ba9c-c158eac33f9c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-41456f92-291d-48e0-ba9c-c158eac33f9c" }, { "id": "3524fad2-ae05-4c02-a7ee-16aea0478ff3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3524fad2-ae05-4c02-a7ee-16aea0478ff3" }, { "id": "bf1eaafd-959e-49b1-be56-c17cc71daed7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bf1eaafd-959e-49b1-be56-c17cc71daed7" }, { "id": "5b8a7e3e-d9d1-41d7-86e1-aeb479ac7284", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5b8a7e3e-d9d1-41d7-86e1-aeb479ac7284" }, { "id": "272a5ce3-8709-4f9a-b6dd-104d05e4d2d5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-272a5ce3-8709-4f9a-b6dd-104d05e4d2d5" }, { "id": "dd83d35d-6592-440e-b0d0-2c7535060766", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mom?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mom" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd83d35d-6592-440e-b0d0-2c7535060766" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6742eded-9d39-4855-a511-87c875c95bfa" } ], "id": "c4ef7a4f-e8bc-4a4d-b02c-06975371bf30", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c4ef7a4f-e8bc-4a4d-b02c-06975371bf30" }, { "name": "money_market_funds", "item": [ { "name": "list", "item": [ { "name": "MMFs directory", "id": "1e846be7-e468-4b4b-b49e-2f5aa04e1460", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] }, "description": "The money market funds directory endpoint provides a list of money market funds, sorted in descending order by their total fund size. This endpoint is useful for retrieving an organized overview of available money market funds." }, "response": [ { "id": "bfaa51c1-fea1-4f7c-ada3-5239432a21e0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"name\": \"\",\n \"symbol\": \"\",\n \"currency\": \"\",\n \"share_class\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"regulatory_structure\": \"\",\n \"domicile\": \"\",\n \"issuing_company\": \"\"\n },\n {\n \"name\": \"\",\n \"symbol\": \"\",\n \"currency\": \"\",\n \"share_class\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"regulatory_structure\": \"\",\n \"domicile\": \"\",\n \"issuing_company\": \"\"\n }\n ],\n \"page\": \"\",\n \"page_size\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bfaa51c1-fea1-4f7c-ada3-5239432a21e0" }, { "id": "5faf3964-692b-413d-a3f2-dec54c87af90", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5faf3964-692b-413d-a3f2-dec54c87af90" }, { "id": "e89b5614-d4f9-4b64-9408-d8e53798defd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e89b5614-d4f9-4b64-9408-d8e53798defd" }, { "id": "d93cb299-57f0-458f-93ab-5fb500a1f8b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d93cb299-57f0-458f-93ab-5fb500a1f8b2" }, { "id": "7818a228-53d0-4f9d-8e51-952ccb9c9b08", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7818a228-53d0-4f9d-8e51-952ccb9c9b08" }, { "id": "4e0a0bfd-a34d-46ae-9135-a82e3747e839", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4e0a0bfd-a34d-46ae-9135-a82e3747e839" }, { "id": "aa17c293-8e98-4df1-b5f5-f0fb96aee50c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa17c293-8e98-4df1-b5f5-f0fb96aee50c" }, { "id": "94a1c94c-21f9-4d1b-9f24-486d9a264653", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/list?symbol=&format=json&delimiter=;&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "list" ], "query": [ { "description": "Filter by symbol (ISIN or ticker)", "key": "symbol", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "json" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-94a1c94c-21f9-4d1b-9f24-486d9a264653" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1e846be7-e468-4b4b-b49e-2f5aa04e1460" } ], "id": "bd66f77a-e42d-4488-8724-7d6eb11ea23b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-bd66f77a-e42d-4488-8724-7d6eb11ea23b" }, { "name": "world", "item": [ { "name": "MMF full data", "id": "34841fda-7334-4b91-ae6c-b56600b646df", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] }, "description": "The money market fund full data endpoint provides detailed information about a global money market fund. It returns a comprehensive snapshot of the fund, including its identity, screener metrics (fund size, liquidity, weighted average maturity), yields, key facts, risk indicator, and key risks. This endpoint is essential for users seeking in-depth insights into a specific money market fund." }, "response": [ { "id": "cc595caf-adaa-496c-8ce5-310c913bedc5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"money_market_fund\": {\n \"symbol\": \"\",\n \"name\": \"\",\n \"currency\": \"\",\n \"share_class\": \"\",\n \"fund_type\": \"\",\n \"total_fund_size_millions\": \"\",\n \"daily_factor\": \"\",\n \"daily_liquidity_pct_nav\": \"\",\n \"weekly_liquidity_pct_nav\": \"\",\n \"wam_days\": \"\",\n \"wal_days\": \"\",\n \"daily_netflows\": \"\",\n \"as_of_date\": \"\",\n \"fund_overview\": \"\",\n \"nav\": \"\",\n \"yield_1m\": \"\",\n \"yield_3m\": \"\",\n \"yield_6m\": \"\",\n \"yield_1y\": \"\",\n \"key_facts\": {},\n \"risk_indicator\": {},\n \"key_risks\": {}\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cc595caf-adaa-496c-8ce5-310c913bedc5" }, { "id": "2e301c23-0ed6-4fa9-9c07-ce31939bf674", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e301c23-0ed6-4fa9-9c07-ce31939bf674" }, { "id": "e44abf46-e611-4f88-a009-0aff3b813b27", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e44abf46-e611-4f88-a009-0aff3b813b27" }, { "id": "5834b821-7fbd-4a4c-9585-e0d060c9d403", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5834b821-7fbd-4a4c-9585-e0d060c9d403" }, { "id": "fe9d5bce-0f71-4146-8cdb-cd35368f7925", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fe9d5bce-0f71-4146-8cdb-cd35368f7925" }, { "id": "9b408b3c-b507-496a-a64e-dcc23fc8db39", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9b408b3c-b507-496a-a64e-dcc23fc8db39" }, { "id": "2128039f-96f2-4331-a81a-c391b5e9cc40", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2128039f-96f2-4331-a81a-c391b5e9cc40" }, { "id": "97e16f9f-6c70-4ded-8030-c854a3d73bd8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/money_market_funds/world?symbol=&figi=&isin=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "money_market_funds", "world" ], "query": [ { "description": "Symbol ticker of money market fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-97e16f9f-6c70-4ded-8030-c854a3d73bd8" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-34841fda-7334-4b91-ae6c-b56600b646df" } ], "id": "67dc5cc7-f413-4b44-988c-dc2dd1f785f1", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-67dc5cc7-f413-4b44-988c-dc2dd1f785f1" } ], "id": "bf0c669c-0e23-4a9c-8229-ca51c0e0fb75", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-bf0c669c-0e23-4a9c-8229-ca51c0e0fb75" }, { "name": "mult", "item": [ { "name": "Multiplication", "id": "eb8c3074-e09f-45f6-8b52-65e36c406f8e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Multiplication (MULT) endpoint calculates the product of two input data series, returning a new data series that represents the element-wise multiplication of the inputs. This is useful for combining or adjusting technical indicators or price data to create custom metrics or to normalize values across different scales." }, "response": [ { "id": "330c026e-6266-45d8-a734-f410ec5aeefc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"mult\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"mult\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-330c026e-6266-45d8-a734-f410ec5aeefc" }, { "id": "c433b3f8-7700-40ae-bd1d-965ead81b3e2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c433b3f8-7700-40ae-bd1d-965ead81b3e2" }, { "id": "bec1cc0b-97c2-4b39-9406-b8bf5188fc40", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bec1cc0b-97c2-4b39-9406-b8bf5188fc40" }, { "id": "2c4e7351-8cdd-478b-9765-742156f478e5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2c4e7351-8cdd-478b-9765-742156f478e5" }, { "id": "dd1e9a5f-809a-484e-8a36-9f8928788603", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd1e9a5f-809a-484e-8a36-9f8928788603" }, { "id": "2fe0241b-7760-4c20-a059-92ef96db0054", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fe0241b-7760-4c20-a059-92ef96db0054" }, { "id": "0a491c86-efde-4bea-a612-161140df26fd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0a491c86-efde-4bea-a612-161140df26fd" }, { "id": "78442a2e-281f-4f79-80f4-f68e424c112e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mult?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "mult" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-78442a2e-281f-4f79-80f4-f68e424c112e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-eb8c3074-e09f-45f6-8b52-65e36c406f8e" } ], "id": "d3843dd6-c32c-46c7-8bbe-0de9d422fb77", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d3843dd6-c32c-46c7-8bbe-0de9d422fb77" }, { "name": "mutual_funds", "item": [ { "name": "family", "item": [ { "name": "MFs families", "id": "e9259c58-2bdb-4421-9e6f-fd8ddafefb90", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The mutual funds family endpoint provides a comprehensive list of MF families, which are groups of mutual funds managed by the same investment company. This data is useful for users looking to explore or compare different fund families, understand the range of investment options offered by each, and identify potential investment opportunities within specific fund families." }, "response": [ { "id": "3b12dd61-34c4-4130-94b3-4ab7fb249b18", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"cillumcf2\": [\n \"\",\n \"\"\n ],\n \"nostrud0\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3b12dd61-34c4-4130-94b3-4ab7fb249b18" }, { "id": "95ee9cd9-e39e-4eb2-a17f-f8069b3ae6fb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-95ee9cd9-e39e-4eb2-a17f-f8069b3ae6fb" }, { "id": "79a8a1cd-2a39-41bf-b124-8db7a4564b2f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-79a8a1cd-2a39-41bf-b124-8db7a4564b2f" }, { "id": "db7b035a-e669-4431-8a5e-b2f1465f4430", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-db7b035a-e669-4431-8a5e-b2f1465f4430" }, { "id": "a4fb8759-ed32-407a-a7f4-5677b087f43a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a4fb8759-ed32-407a-a7f4-5677b087f43a" }, { "id": "7e10cc88-08c5-4c23-8816-1cb0d3c1be9a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7e10cc88-08c5-4c23-8816-1cb0d3c1be9a" }, { "id": "cd18cdc4-d333-4354-b6d1-a915351fe436", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cd18cdc4-d333-4354-b6d1-a915351fe436" }, { "id": "35ca63d7-3a09-4073-8751-d3d7c901d034", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/family?fund_family=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "family" ], "query": [ { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-35ca63d7-3a09-4073-8751-d3d7c901d034" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e9259c58-2bdb-4421-9e6f-fd8ddafefb90" } ], "id": "23527edc-bad7-4f2c-a9b7-da48a314996e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-23527edc-bad7-4f2c-a9b7-da48a314996e" }, { "name": "list", "item": [ { "name": "MFs directory", "id": "56e3cb39-e97a-4396-aa1c-5861fc833d40", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] }, "description": "The mutual funds directory endpoint provides a daily updated list of mutual funds, sorted in descending order by their total assets value. This endpoint is useful for retrieving an organized overview of available mutual funds." }, "response": [ { "id": "14e9a257-0ef4-4e20-a0fb-893a314fb2ed", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"status\": \"\",\n \"result\": {\n \"count\": \"\",\n \"list\": [\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"performance_rating\": \"\",\n \"risk_rating\": \"\"\n },\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"performance_rating\": \"\",\n \"risk_rating\": \"\"\n }\n ]\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-14e9a257-0ef4-4e20-a0fb-893a314fb2ed" }, { "id": "6d60674e-cf2f-42af-8db2-a2194a428a63", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6d60674e-cf2f-42af-8db2-a2194a428a63" }, { "id": "bd3ee758-8a37-4f91-b4c2-5b6cb1efe47f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bd3ee758-8a37-4f91-b4c2-5b6cb1efe47f" }, { "id": "44dd573e-d111-4abe-8ab4-d64e91ad3e9f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44dd573e-d111-4abe-8ab4-d64e91ad3e9f" }, { "id": "2cfb12c6-61c5-48e8-a1eb-83d7c6449fe2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2cfb12c6-61c5-48e8-a1eb-83d7c6449fe2" }, { "id": "dd1e2999-ad38-485e-abe0-6ccb952fac70", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd1e2999-ad38-485e-abe0-6ccb952fac70" }, { "id": "6983e1a1-e110-426b-b135-302738fa0698", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6983e1a1-e110-426b-b135-302738fa0698" }, { "id": "9545be82-d682-4864-9f8f-5dab7d431fe4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/list?symbol=&figi=&isin=&cusip=&cik=&country=&fund_family=&fund_type=&performance_rating=&risk_rating=&format=JSON&delimiter=;&dp=5&page=1&outputsize=100", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "list" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by investment company that manages the fund", "key": "fund_family", "value": "" }, { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by performance rating from `0` to `5`", "key": "performance_rating", "value": "" }, { "description": "Filter by risk rating from `0` to `5`", "key": "risk_rating", "value": "" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Number of decimal places for floating values", "key": "dp", "value": "5" }, { "description": "Page number", "key": "page", "value": "1" }, { "description": "Number of records in response", "key": "outputsize", "value": "100" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9545be82-d682-4864-9f8f-5dab7d431fe4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-56e3cb39-e97a-4396-aa1c-5861fc833d40" } ], "id": "65e8ad36-e66f-4420-8ebc-1f01d4c37db2", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-65e8ad36-e66f-4420-8ebc-1f01d4c37db2" }, { "name": "type", "item": [ { "name": "MFs types", "id": "934c71c8-d039-4d1e-9e29-836cf63608d6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "This endpoint provides detailed information on various types of mutual funds, such as equity, bond, and balanced funds, allowing users to understand the different investment options available." }, "response": [ { "id": "9265f94f-5085-441e-a0c0-149d0fb3bf56", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"result\": {\n \"incididunt7e1\": [\n \"\",\n \"\"\n ],\n \"sunt_014\": [\n \"\",\n \"\"\n ]\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9265f94f-5085-441e-a0c0-149d0fb3bf56" }, { "id": "607630bc-e7f3-4098-bb5e-34f647761804", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-607630bc-e7f3-4098-bb5e-34f647761804" }, { "id": "9baefba2-f371-48e5-b4be-506a93e8d25e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9baefba2-f371-48e5-b4be-506a93e8d25e" }, { "id": "4a546e13-049d-474a-aa3f-80a429f2f10b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4a546e13-049d-474a-aa3f-80a429f2f10b" }, { "id": "2fae982a-f036-416b-a601-a5d9f6a96068", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fae982a-f036-416b-a601-a5d9f6a96068" }, { "id": "87cbe1b1-487e-4d9b-9b5f-e4927e3dc4cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87cbe1b1-487e-4d9b-9b5f-e4927e3dc4cb" }, { "id": "c01ed89e-59c1-4bd6-a79c-93dd1ace64b8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c01ed89e-59c1-4bd6-a79c-93dd1ace64b8" }, { "id": "14d2d94d-921c-407f-bfa6-860a213a5fcc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/type?fund_type=&country=", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "type" ], "query": [ { "description": "Filter by the type of fund", "key": "fund_type", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-14d2d94d-921c-407f-bfa6-860a213a5fcc" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-934c71c8-d039-4d1e-9e29-836cf63608d6" } ], "id": "fc8a6d18-d177-49d7-a660-88bee319b38d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fc8a6d18-d177-49d7-a660-88bee319b38d" }, { "name": "world", "item": [ { "name": "composition", "item": [ { "name": "Composition", "id": "59c31d36-4415-4d3a-b87d-fcf1c2cbbb21", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds compositions endpoint provides detailed information about the portfolio composition of a specified mutual fund. It returns data on sector allocations, individual holdings, and their respective weighted exposures. This endpoint is useful for users seeking to understand the investment distribution and risk profile of a mutual fund." }, "response": [ { "id": "9de5c515-be76-499f-bfa8-b4ca5ac2a9d2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"composition\": {\n \"major_market_sectors\": [\n {\n \"sector\": \"\",\n \"weight\": \"\"\n },\n {\n \"sector\": \"\",\n \"weight\": \"\"\n }\n ],\n \"asset_allocation\": {\n \"cash\": \"\",\n \"stocks\": \"\",\n \"preferred_stocks\": \"\",\n \"convertables\": \"\",\n \"bonds\": \"\",\n \"others\": \"\"\n },\n \"top_holdings\": [\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n },\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n }\n ],\n \"bond_breakdown\": {\n \"average_maturity\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"average_duration\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"credit_quality\": [\n {\n \"grade\": \"\",\n \"weight\": \"\"\n },\n {\n \"grade\": \"\",\n \"weight\": \"\"\n }\n ]\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9de5c515-be76-499f-bfa8-b4ca5ac2a9d2" }, { "id": "5bddc856-a10a-4b2c-abac-0eb19c75cab5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5bddc856-a10a-4b2c-abac-0eb19c75cab5" }, { "id": "76cb88a5-9a23-4d1e-930d-290f5b78422a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-76cb88a5-9a23-4d1e-930d-290f5b78422a" }, { "id": "7eda4477-713d-43ef-bfbc-eeccff7c2b55", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7eda4477-713d-43ef-bfbc-eeccff7c2b55" }, { "id": "38093d72-bfcb-48a9-96d4-bb6816c7a665", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38093d72-bfcb-48a9-96d4-bb6816c7a665" }, { "id": "21883cb7-1c01-41d5-9d87-686e1ebc125a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21883cb7-1c01-41d5-9d87-686e1ebc125a" }, { "id": "110c1caf-a50c-4196-83d4-a4ed5b1f78f9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-110c1caf-a50c-4196-83d4-a4ed5b1f78f9" }, { "id": "b29fa24a-341e-41c5-b5bd-c2328f65de52", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/composition?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "composition" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b29fa24a-341e-41c5-b5bd-c2328f65de52" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-59c31d36-4415-4d3a-b87d-fcf1c2cbbb21" } ], "id": "902a2ae0-d714-4e33-a088-8b7c3c7d4b5e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-902a2ae0-d714-4e33-a088-8b7c3c7d4b5e" }, { "name": "performance", "item": [ { "name": "Performance", "id": "0b29c156-5370-4d06-8884-5df9272d0197", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds performances endpoint provides comprehensive performance data for mutual funds globally. It returns metrics such as trailing returns, annual returns, quarterly returns, and load-adjusted returns." }, "response": [ { "id": "c74d75b9-33c8-4822-a078-7289f29876ab", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"performance\": {\n \"trailing_returns\": [\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\",\n \"rank_in_category\": \"\"\n },\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\",\n \"rank_in_category\": \"\"\n }\n ],\n \"annual_total_returns\": [\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ],\n \"quarterly_total_returns\": [\n {\n \"year\": \"\",\n \"q1\": \"\",\n \"q2\": \"\",\n \"q3\": \"\",\n \"q4\": \"\"\n },\n {\n \"year\": \"\",\n \"q1\": \"\",\n \"q2\": \"\",\n \"q3\": \"\",\n \"q4\": \"\"\n }\n ],\n \"load_adjusted_return\": [\n {\n \"period\": \"\",\n \"return\": \"\"\n },\n {\n \"period\": \"\",\n \"return\": \"\"\n }\n ]\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c74d75b9-33c8-4822-a078-7289f29876ab" }, { "id": "163f7c39-628e-4814-976d-48a2ba66b901", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-163f7c39-628e-4814-976d-48a2ba66b901" }, { "id": "e3a7dfd4-1801-4ae6-9721-598cd3ea1e15", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e3a7dfd4-1801-4ae6-9721-598cd3ea1e15" }, { "id": "fec8b43c-c537-4f00-85d6-0203742e2cac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fec8b43c-c537-4f00-85d6-0203742e2cac" }, { "id": "aed0c2b7-a0e4-40a1-a7e9-89969a8c3e3c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aed0c2b7-a0e4-40a1-a7e9-89969a8c3e3c" }, { "id": "3390a4d8-f7bb-4a8d-b600-29e989ba6d55", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3390a4d8-f7bb-4a8d-b600-29e989ba6d55" }, { "id": "7ea1dfcd-7d8d-4eba-80dd-2accaf42070c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ea1dfcd-7d8d-4eba-80dd-2accaf42070c" }, { "id": "af2fab09-4a29-4362-b156-b1dae1b87e2a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/performance?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "performance" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-af2fab09-4a29-4362-b156-b1dae1b87e2a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0b29c156-5370-4d06-8884-5df9272d0197" } ], "id": "16292b04-cb7c-44ee-b5d4-d68eded53b1b", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-16292b04-cb7c-44ee-b5d4-d68eded53b1b" }, { "name": "purchase_info", "item": [ { "name": "Purchase info", "id": "8fdce432-61aa-4d17-99f6-9355197dfd89", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds purchase information endpoint provides detailed purchasing details for global mutual funds. It returns data on minimum investment requirements, current pricing, and a list of brokerages where the mutual fund can be purchased. This endpoint is useful for users looking to understand the entry requirements and options available for investing in specific mutual funds." }, "response": [ { "id": "7ec1bec5-93a6-434c-b533-6bbd4591a509", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"purchase_info\": {\n \"expenses\": {\n \"expense_ratio_gross\": \"\",\n \"expense_ratio_net\": \"\"\n },\n \"minimums\": {\n \"initial_investment\": \"\",\n \"additional_investment\": \"\",\n \"initial_ira_investment\": \"\",\n \"additional_ira_investment\": \"\"\n },\n \"pricing\": {\n \"nav\": \"\",\n \"12_month_low\": \"\",\n \"12_month_high\": \"\",\n \"last_month\": \"\"\n },\n \"brokerages\": [\n \"\",\n \"\"\n ]\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ec1bec5-93a6-434c-b533-6bbd4591a509" }, { "id": "e7c0cb6d-5803-4c8b-94ad-2a175b58ff22", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e7c0cb6d-5803-4c8b-94ad-2a175b58ff22" }, { "id": "7d134c92-57c5-4a80-aa43-05bc4f9709da", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7d134c92-57c5-4a80-aa43-05bc4f9709da" }, { "id": "54184f20-0916-43ec-934a-def34555ed7b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-54184f20-0916-43ec-934a-def34555ed7b" }, { "id": "f5b48907-264d-4fc8-b912-860c5e290599", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f5b48907-264d-4fc8-b912-860c5e290599" }, { "id": "f977f620-38e1-43a5-9772-71d85547ae86", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f977f620-38e1-43a5-9772-71d85547ae86" }, { "id": "5f2dc0ef-f15d-40af-9b04-12427b9c2456", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5f2dc0ef-f15d-40af-9b04-12427b9c2456" }, { "id": "cf9a9f6f-6d5b-4a50-ba14-7710b0c6b1b7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/purchase_info?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "purchase_info" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cf9a9f6f-6d5b-4a50-ba14-7710b0c6b1b7" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8fdce432-61aa-4d17-99f6-9355197dfd89" } ], "id": "39b9e6d5-325c-405a-a3a8-d841ea6722e9", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-39b9e6d5-325c-405a-a3a8-d841ea6722e9" }, { "name": "ratings", "item": [ { "name": "Ratings", "id": "b58da085-7944-416e-b30e-7b634406e61e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds ratings endpoint provides detailed ratings for mutual funds across global markets. It returns data on the performance and quality of mutual funds, including ratings calculated in-house by Twelve Data and from various financial institutions." }, "response": [ { "id": "7a7151d1-4910-4f4e-82ea-80380a72f04e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"ratings\": {\n \"performance_rating\": \"\",\n \"risk_rating\": \"\",\n \"return_rating\": \"\"\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7a7151d1-4910-4f4e-82ea-80380a72f04e" }, { "id": "de45ac02-578d-48e6-bb41-b7d5f09177af", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-de45ac02-578d-48e6-bb41-b7d5f09177af" }, { "id": "da8c7c0c-447f-425e-ac55-c0d052dfad99", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-da8c7c0c-447f-425e-ac55-c0d052dfad99" }, { "id": "0f2bd50b-528d-4338-911a-c76cefd4f645", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0f2bd50b-528d-4338-911a-c76cefd4f645" }, { "id": "82218d90-a721-4044-9a24-316dd6b78c7e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-82218d90-a721-4044-9a24-316dd6b78c7e" }, { "id": "94eb00e0-8844-4ef3-aca0-5e894da7e854", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-94eb00e0-8844-4ef3-aca0-5e894da7e854" }, { "id": "a4d6b9c2-acd7-4ea1-b493-b19020dda2ea", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a4d6b9c2-acd7-4ea1-b493-b19020dda2ea" }, { "id": "49d0b203-63d7-47e5-8c62-3f0b392f2576", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/ratings?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "ratings" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-49d0b203-63d7-47e5-8c62-3f0b392f2576" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b58da085-7944-416e-b30e-7b634406e61e" } ], "id": "182f8a1f-0c06-4677-8dce-8d21fc49cf0d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-182f8a1f-0c06-4677-8dce-8d21fc49cf0d" }, { "name": "risk", "item": [ { "name": "Risk", "id": "036a3196-0d36-425a-af24-165400309cde", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds risk endpoint provides detailed risk metrics for global mutual funds. It returns data such as standard deviation, beta, and Sharpe ratio, which help assess the volatility and risk profile of mutual funds across different markets." }, "response": [ { "id": "3754fb9c-67c8-4b25-abd2-82860c4a07a2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"risk\": {\n \"volatility_measures\": [\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n },\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n }\n ],\n \"valuation_metrics\": {\n \"price_to_earnings\": \"\",\n \"price_to_earnings_category\": \"\",\n \"price_to_book\": \"\",\n \"price_to_book_category\": \"\",\n \"price_to_sales\": \"\",\n \"price_to_sales_category\": \"\",\n \"price_to_cashflow\": \"\",\n \"price_to_cashflow_category\": \"\",\n \"median_market_capitalization\": \"\",\n \"median_market_capitalization_category\": \"\",\n \"3_year_earnings_growth\": \"\",\n \"3_year_earnings_growths_category\": \"\"\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3754fb9c-67c8-4b25-abd2-82860c4a07a2" }, { "id": "e4f0c2f7-ae65-4bf8-ad11-dd969a67c5fe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e4f0c2f7-ae65-4bf8-ad11-dd969a67c5fe" }, { "id": "1c510f0a-1a89-42dc-be4a-d75b64de7f91", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c510f0a-1a89-42dc-be4a-d75b64de7f91" }, { "id": "a0ff97a9-1b6c-497e-93b5-8688c0b04abe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a0ff97a9-1b6c-497e-93b5-8688c0b04abe" }, { "id": "aa31679a-501b-4d42-b5bb-69ca9040b94d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa31679a-501b-4d42-b5bb-69ca9040b94d" }, { "id": "631f4a92-f625-40a8-b8ff-c75f107485c5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-631f4a92-f625-40a8-b8ff-c75f107485c5" }, { "id": "e13d90da-d9a7-48b7-b332-3932ccd06d0f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e13d90da-d9a7-48b7-b332-3932ccd06d0f" }, { "id": "c55baa71-f990-427f-a64f-346ad994df05", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/risk?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "risk" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c55baa71-f990-427f-a64f-346ad994df05" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-036a3196-0d36-425a-af24-165400309cde" } ], "id": "8f35b2eb-7d42-4fbd-8331-f300cda4894f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-8f35b2eb-7d42-4fbd-8331-f300cda4894f" }, { "name": "summary", "item": [ { "name": "Summary", "id": "b55162e3-5fd6-4581-964a-4c4e1bffda4b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds summary endpoint provides a concise overview of global mutual funds, including key details such as fund name, symbol, asset class, and region. This endpoint is useful for quickly obtaining essential information about various mutual funds worldwide, aiding in the comparison and selection of funds for investment portfolios." }, "response": [ { "id": "66fc25f5-d669-4143-8308-ed62948c52e9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"summary\": {\n \"symbol\": \"\",\n \"name\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"currency\": \"\",\n \"share_class_inception_date\": \"\",\n \"ytd_return\": \"\",\n \"expense_ratio_net\": \"\",\n \"yield\": \"\",\n \"nav\": \"\",\n \"min_investment\": \"\",\n \"turnover_rate\": \"\",\n \"net_assets\": \"\",\n \"overview\": \"\",\n \"people\": [\n {\n \"name\": \"\",\n \"tenure_since\": \"\"\n },\n {\n \"name\": \"\",\n \"tenure_since\": \"\"\n }\n ]\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-66fc25f5-d669-4143-8308-ed62948c52e9" }, { "id": "f5c9b617-c384-4108-a78f-e835b30f6b24", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f5c9b617-c384-4108-a78f-e835b30f6b24" }, { "id": "735c23ae-af6f-4298-833e-abc1ddaee8e2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-735c23ae-af6f-4298-833e-abc1ddaee8e2" }, { "id": "6f40e3f2-613f-4c9e-802a-9ad6919b537f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6f40e3f2-613f-4c9e-802a-9ad6919b537f" }, { "id": "5726fd85-e85d-4cc7-a260-0ed2f8f0b4a1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5726fd85-e85d-4cc7-a260-0ed2f8f0b4a1" }, { "id": "c2967f55-99cc-4468-8f25-ac3cd9f70dc8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c2967f55-99cc-4468-8f25-ac3cd9f70dc8" }, { "id": "65ba3f8a-c3a9-4f57-9f01-8d1ba46aa226", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-65ba3f8a-c3a9-4f57-9f01-8d1ba46aa226" }, { "id": "b0b78b94-751b-4ee8-a225-036f932c782f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/summary?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "summary" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b0b78b94-751b-4ee8-a225-036f932c782f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b55162e3-5fd6-4581-964a-4c4e1bffda4b" } ], "id": "d063a278-1d2a-4c44-884e-2d8a512e4992", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d063a278-1d2a-4c44-884e-2d8a512e4992" }, { "name": "sustainability", "item": [ { "name": "Sustainability", "id": "864b5f6f-e2c8-4f23-82e9-33be6832ea82", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual funds sustainability endpoint provides detailed information on the sustainability and Environmental, Social, and Governance (ESG) ratings of global mutual funds. It returns data such as ESG scores, sustainability metrics, and fund identifiers." }, "response": [ { "id": "10619d9a-4765-47df-ab2c-0508c28bbdb8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"sustainability\": {\n \"score\": \"\",\n \"corporate_esg_pillars\": {\n \"environmental\": \"\",\n \"social\": \"\",\n \"governance\": \"\"\n },\n \"sustainable_investment\": \"\",\n \"corporate_aum\": \"\"\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-10619d9a-4765-47df-ab2c-0508c28bbdb8" }, { "id": "659cbed4-6feb-4fca-a9a9-d3cb023d580d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-659cbed4-6feb-4fca-a9a9-d3cb023d580d" }, { "id": "8f207338-fb71-42f1-aab1-cb40a5a85b82", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8f207338-fb71-42f1-aab1-cb40a5a85b82" }, { "id": "e2867bb9-6634-4ae9-bc2d-5e4dee9919eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e2867bb9-6634-4ae9-bc2d-5e4dee9919eb" }, { "id": "8b4de737-b9fe-44ac-9191-4df2afdc831e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8b4de737-b9fe-44ac-9191-4df2afdc831e" }, { "id": "27ae2b6b-3c22-4e23-905d-b65c826ada69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27ae2b6b-3c22-4e23-905d-b65c826ada69" }, { "id": "074b1f5e-20b7-4343-a3cf-3a6ef8a86649", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-074b1f5e-20b7-4343-a3cf-3a6ef8a86649" }, { "id": "105b279a-92f2-4d67-bd29-1e6b6063122e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world/sustainability?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world", "sustainability" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-105b279a-92f2-4d67-bd29-1e6b6063122e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-864b5f6f-e2c8-4f23-82e9-33be6832ea82" } ], "id": "2e57fabe-8081-4525-adb2-2c29b316cb9c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2e57fabe-8081-4525-adb2-2c29b316cb9c" }, { "name": "MF full data", "id": "8f26a29f-e6de-4b2e-a7b5-ffcdc73a76eb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] }, "description": "The mutual full data endpoint provides detailed information about global mutual funds. It returns a comprehensive dataset that includes a summary of the fund, its performance metrics, risk assessment, ratings, asset composition, purchase details, and sustainability factors. This endpoint is essential for users seeking in-depth insights into mutual funds on a global scale, allowing them to evaluate various aspects such as investment performance, risk levels, and environmental impact." }, "response": [ { "id": "670cc15b-af4c-4037-a969-88d91db5c001", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"mutual_fund\": {\n \"summary\": {\n \"symbol\": \"\",\n \"name\": \"\",\n \"fund_family\": \"\",\n \"fund_type\": \"\",\n \"currency\": \"\",\n \"share_class_inception_date\": \"\",\n \"ytd_return\": \"\",\n \"expense_ratio_net\": \"\",\n \"yield\": \"\",\n \"nav\": \"\",\n \"min_investment\": \"\",\n \"turnover_rate\": \"\",\n \"net_assets\": \"\",\n \"overview\": \"\",\n \"people\": [\n {\n \"name\": \"\",\n \"tenure_since\": \"\"\n },\n {\n \"name\": \"\",\n \"tenure_since\": \"\"\n }\n ]\n },\n \"performance\": {\n \"trailing_returns\": [\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\",\n \"rank_in_category\": \"\"\n },\n {\n \"period\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\",\n \"rank_in_category\": \"\"\n }\n ],\n \"annual_total_returns\": [\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n },\n {\n \"year\": \"\",\n \"share_class_return\": \"\",\n \"category_return\": \"\"\n }\n ],\n \"quarterly_total_returns\": [\n {\n \"year\": \"\",\n \"q1\": \"\",\n \"q2\": \"\",\n \"q3\": \"\",\n \"q4\": \"\"\n },\n {\n \"year\": \"\",\n \"q1\": \"\",\n \"q2\": \"\",\n \"q3\": \"\",\n \"q4\": \"\"\n }\n ],\n \"load_adjusted_return\": [\n {\n \"period\": \"\",\n \"return\": \"\"\n },\n {\n \"period\": \"\",\n \"return\": \"\"\n }\n ]\n },\n \"risk\": {\n \"volatility_measures\": [\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n },\n {\n \"period\": \"\",\n \"alpha\": \"\",\n \"alpha_category\": \"\",\n \"beta\": \"\",\n \"beta_category\": \"\",\n \"mean_annual_return\": \"\",\n \"mean_annual_return_category\": \"\",\n \"r_squared\": \"\",\n \"r_squared_category\": \"\",\n \"std\": \"\",\n \"std_category\": \"\",\n \"sharpe_ratio\": \"\",\n \"sharpe_ratio_category\": \"\",\n \"treynor_ratio\": \"\",\n \"treynor_ratio_category\": \"\"\n }\n ],\n \"valuation_metrics\": {\n \"price_to_earnings\": \"\",\n \"price_to_earnings_category\": \"\",\n \"price_to_book\": \"\",\n \"price_to_book_category\": \"\",\n \"price_to_sales\": \"\",\n \"price_to_sales_category\": \"\",\n \"price_to_cashflow\": \"\",\n \"price_to_cashflow_category\": \"\",\n \"median_market_capitalization\": \"\",\n \"median_market_capitalization_category\": \"\",\n \"3_year_earnings_growth\": \"\",\n \"3_year_earnings_growths_category\": \"\"\n }\n },\n \"ratings\": {\n \"performance_rating\": \"\",\n \"risk_rating\": \"\",\n \"return_rating\": \"\"\n },\n \"composition\": {\n \"major_market_sectors\": [\n {\n \"sector\": \"\",\n \"weight\": \"\"\n },\n {\n \"sector\": \"\",\n \"weight\": \"\"\n }\n ],\n \"asset_allocation\": {\n \"cash\": \"\",\n \"stocks\": \"\",\n \"preferred_stocks\": \"\",\n \"convertables\": \"\",\n \"bonds\": \"\",\n \"others\": \"\"\n },\n \"top_holdings\": [\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n },\n {\n \"symbol\": \"\",\n \"name\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"weight\": \"\"\n }\n ],\n \"bond_breakdown\": {\n \"average_maturity\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"average_duration\": {\n \"fund\": \"\",\n \"category\": \"\"\n },\n \"credit_quality\": [\n {\n \"grade\": \"\",\n \"weight\": \"\"\n },\n {\n \"grade\": \"\",\n \"weight\": \"\"\n }\n ]\n }\n },\n \"purchase_info\": {\n \"expenses\": {\n \"expense_ratio_gross\": \"\",\n \"expense_ratio_net\": \"\"\n },\n \"minimums\": {\n \"initial_investment\": \"\",\n \"additional_investment\": \"\",\n \"initial_ira_investment\": \"\",\n \"additional_ira_investment\": \"\"\n },\n \"pricing\": {\n \"nav\": \"\",\n \"12_month_low\": \"\",\n \"12_month_high\": \"\",\n \"last_month\": \"\"\n },\n \"brokerages\": [\n \"\",\n \"\"\n ]\n },\n \"sustainability\": {\n \"score\": \"\",\n \"corporate_esg_pillars\": {\n \"environmental\": \"\",\n \"social\": \"\",\n \"governance\": \"\"\n },\n \"sustainable_investment\": \"\",\n \"corporate_aum\": \"\"\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-670cc15b-af4c-4037-a969-88d91db5c001" }, { "id": "e7942667-516d-4b33-a021-c025d6ea67bd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e7942667-516d-4b33-a021-c025d6ea67bd" }, { "id": "cc279e76-648d-48bf-a813-3a20f43407bd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cc279e76-648d-48bf-a813-3a20f43407bd" }, { "id": "9396a0b6-41b4-4d9b-ad86-2453cdbd8fa3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9396a0b6-41b4-4d9b-ad86-2453cdbd8fa3" }, { "id": "2a3281bf-08b7-497a-b1f6-c99e5761fd09", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a3281bf-08b7-497a-b1f6-c99e5761fd09" }, { "id": "1166b802-a98f-4baa-a01a-e5250a5c5975", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1166b802-a98f-4baa-a01a-e5250a5c5975" }, { "id": "8427298f-8889-40ad-817a-54d43f91e0a1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8427298f-8889-40ad-817a-54d43f91e0a1" }, { "id": "882d7979-ec32-4dfe-9377-f80ed046b5cb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/mutual_funds/world?symbol=&figi=&isin=&cusip=&country=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "mutual_funds", "world" ], "query": [ { "description": "Symbol ticker of mutual fund", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of decimal places for floating values. Accepts value in range [0,11]", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-882d7979-ec32-4dfe-9377-f80ed046b5cb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8f26a29f-e6de-4b2e-a7b5-ffcdc73a76eb" } ], "id": "b91cbd54-16eb-41ac-99fa-ed1e9b34bb98", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b91cbd54-16eb-41ac-99fa-ed1e9b34bb98" } ], "id": "1695969a-ca98-48a2-b0ab-ccf8d2c373b4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1695969a-ca98-48a2-b0ab-ccf8d2c373b4" }, { "name": "natr", "item": [ { "name": "Normalized average true range", "id": "f76e562e-0d97-478b-8aff-beb0f5da55e2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Normalized Average True Range (NATR) endpoint provides a volatility indicator that calculates the average range of price movement over a specified period, expressed as a percentage of the security's price. This data allows users to compare volatility levels across different securities easily. The endpoint returns a time series of NATR values, which can be used to assess and compare the price volatility of various financial instruments." }, "response": [ { "id": "3f83a11f-8db6-43ec-82b9-b3752892316e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"natr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"natr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3f83a11f-8db6-43ec-82b9-b3752892316e" }, { "id": "93521b50-e468-48b3-8125-f42c7a68ff3e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93521b50-e468-48b3-8125-f42c7a68ff3e" }, { "id": "d2018375-8ea1-4e39-8c7c-33e731b57ca6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d2018375-8ea1-4e39-8c7c-33e731b57ca6" }, { "id": "6f7c3c32-40ea-4aa5-b7cc-6939acf083f1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6f7c3c32-40ea-4aa5-b7cc-6939acf083f1" }, { "id": "17ae7be6-4fdd-4368-82ad-1077607d998a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-17ae7be6-4fdd-4368-82ad-1077607d998a" }, { "id": "12bd9ee8-ac4a-4f26-98a8-19a4f9c323ea", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-12bd9ee8-ac4a-4f26-98a8-19a4f9c323ea" }, { "id": "a5541543-90dc-4b84-8357-8ac469023651", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a5541543-90dc-4b84-8357-8ac469023651" }, { "id": "7dd04e63-833c-48f0-b4ca-e4fc9cbadc76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/natr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "natr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7dd04e63-833c-48f0-b4ca-e4fc9cbadc76" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f76e562e-0d97-478b-8aff-beb0f5da55e2" } ], "id": "89890639-cf6d-4e84-8ed0-afbac4c6b784", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-89890639-cf6d-4e84-8ed0-afbac4c6b784" }, { "name": "obv", "item": [ { "name": "On balance volume", "id": "0d0f27f6-f53c-4119-9500-acf0ad85ece6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The On Balance Volume (OBV) endpoint provides a time series of the OBV indicator, which calculates cumulative volume to reflect buying and selling pressure over time. This endpoint returns data that helps users track volume trends in relation to price movements, aiding in the identification of potential trend continuations or reversals in a security's price." }, "response": [ { "id": "93e5dee4-10a4-439f-aa39-21ebb3d7ccca", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"obv\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"obv\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93e5dee4-10a4-439f-aa39-21ebb3d7ccca" }, { "id": "e527cc15-8e50-47a4-bfbc-53721976a364", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e527cc15-8e50-47a4-bfbc-53721976a364" }, { "id": "0b02ae08-4f39-4ceb-92a8-301adee23996", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0b02ae08-4f39-4ceb-92a8-301adee23996" }, { "id": "af513443-19df-40d6-9921-023a04438314", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-af513443-19df-40d6-9921-023a04438314" }, { "id": "f7bc74bd-06d7-43c5-986c-e54cc52ae8f3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f7bc74bd-06d7-43c5-986c-e54cc52ae8f3" }, { "id": "75177ae5-57a6-4362-bb59-508fffaf0948", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-75177ae5-57a6-4362-bb59-508fffaf0948" }, { "id": "5ba223c6-7e37-4ec1-8451-d228a2408e10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ba223c6-7e37-4ec1-8451-d228a2408e10" }, { "id": "e59faec7-bdee-48a6-bd0d-2f1d03bde8ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/obv?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "obv" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e59faec7-bdee-48a6-bd0d-2f1d03bde8ef" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0d0f27f6-f53c-4119-9500-acf0ad85ece6" } ], "id": "8ffa65c7-845e-4ed3-ace2-c7081ee2eb99", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-8ffa65c7-845e-4ed3-ace2-c7081ee2eb99" }, { "name": "percent_b", "item": [ { "name": "Percent B", "id": "439e3d1d-7516-45c9-8bab-b818355724eb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Percent B (%B) endpoint calculates and returns the %B value, which indicates the position of a security's price relative to its Bollinger Bands. This data helps users determine if a security is near the upper or lower band, potentially signaling overbought or oversold conditions." }, "response": [ { "id": "2caa58d9-8c71-4ec5-a083-d92d2a372483", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"ma_type\": \"\",\n \"name\": \"\",\n \"sd\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"percent_b\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"percent_b\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2caa58d9-8c71-4ec5-a083-d92d2a372483" }, { "id": "77732bc9-465d-423e-b4ad-7bdedc95baa9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-77732bc9-465d-423e-b4ad-7bdedc95baa9" }, { "id": "9455c813-c502-42d5-8b2a-278b8dfce048", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9455c813-c502-42d5-8b2a-278b8dfce048" }, { "id": "7aa57ce3-4502-413c-a7a6-2f6d5b74a5b8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7aa57ce3-4502-413c-a7a6-2f6d5b74a5b8" }, { "id": "029c70c4-8de3-4da2-b1d0-f7606007784f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-029c70c4-8de3-4da2-b1d0-f7606007784f" }, { "id": "74ef40c1-1e34-4ea9-b009-4c7c85dc743e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-74ef40c1-1e34-4ea9-b009-4c7c85dc743e" }, { "id": "ff1439ab-0477-4dec-8dcc-eb0d4c9d92fb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff1439ab-0477-4dec-8dcc-eb0d4c9d92fb" }, { "id": "d5405dbb-60bd-453a-a80a-21e11b3c41c3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/percent_b?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "percent_b" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation. Must be at least `1`", "key": "sd", "value": "2" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d5405dbb-60bd-453a-a80a-21e11b3c41c3" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-439e3d1d-7516-45c9-8bab-b818355724eb" } ], "id": "f998daab-9d3f-4a5c-b830-7905a0e30c65", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f998daab-9d3f-4a5c-b830-7905a0e30c65" }, { "name": "pivot_points_hl", "item": [ { "name": "Pivot points high low", "id": "828cc11f-c92b-427d-aea9-898fccc3ce70", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Pivot Points High Low (PIVOT_POINTS_HL) endpoint calculates key support and resistance levels for a security by analyzing its highest and lowest prices over a specified period. This endpoint returns data that includes pivot points, support levels, and resistance levels, which can be used to identify potential price reversal zones and optimize trade entry and exit strategies." }, "response": [ { "id": "c4fb2fa2-257f-42b8-b6a2-2d55927fcac4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"pivot_point_h\": \"\",\n \"pivot_point_l\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"pivot_point_h\": \"\",\n \"pivot_point_l\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c4fb2fa2-257f-42b8-b6a2-2d55927fcac4" }, { "id": "ce272a02-4ddc-414e-adea-809321840766", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce272a02-4ddc-414e-adea-809321840766" }, { "id": "f1ab6a1d-729f-4f15-b2fc-2a3b735bda54", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f1ab6a1d-729f-4f15-b2fc-2a3b735bda54" }, { "id": "73e40d6c-6b85-4492-99ec-a346ad512b90", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-73e40d6c-6b85-4492-99ec-a346ad512b90" }, { "id": "64b817a8-bc9b-49e5-ade2-376448ee46e5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-64b817a8-bc9b-49e5-ade2-376448ee46e5" }, { "id": "8f122b2d-4c5d-4ffe-94e9-867b36fe1e27", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8f122b2d-4c5d-4ffe-94e9-867b36fe1e27" }, { "id": "72d6a55e-8caa-4b78-9328-f67ca5c90bee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-72d6a55e-8caa-4b78-9328-f67ca5c90bee" }, { "id": "e3eedf6b-ad5a-43c0-a82b-5148bbe8bcf9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/pivot_points_hl?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=10&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "pivot_points_hl" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "10" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e3eedf6b-ad5a-43c0-a82b-5148bbe8bcf9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-828cc11f-c92b-427d-aea9-898fccc3ce70" } ], "id": "386f0352-53ce-4d2a-88fc-cb915442faad", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-386f0352-53ce-4d2a-88fc-cb915442faad" }, { "name": "plus_di", "item": [ { "name": "Plus directional indicator", "id": "36a2d9bd-a730-477e-b784-0e93f518ca3d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Plus Directional Indicator endpoint (/plus_di) provides data on the strength of a security's upward price movement by calculating the Plus Directional Indicator (PLUS_DI). It returns a time series of PLUS_DI values, which can be used to assess the intensity of upward trends in a security's price over a specified period." }, "response": [ { "id": "8a65ea5b-a3a9-4412-93c7-b10c632e8267", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"plus_di\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"plus_di\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8a65ea5b-a3a9-4412-93c7-b10c632e8267" }, { "id": "2b4d0ba5-5c99-4c6d-a519-a472a0b51f0c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2b4d0ba5-5c99-4c6d-a519-a472a0b51f0c" }, { "id": "fcfe405b-d341-4078-bded-40a19f1fe7e5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fcfe405b-d341-4078-bded-40a19f1fe7e5" }, { "id": "6aefd6c9-91d4-47c8-82ea-4e78e9a42934", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6aefd6c9-91d4-47c8-82ea-4e78e9a42934" }, { "id": "edf6e527-6bb2-44f6-bc4b-66a836049942", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-edf6e527-6bb2-44f6-bc4b-66a836049942" }, { "id": "6711999e-e458-43d8-9304-55470988a6fe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6711999e-e458-43d8-9304-55470988a6fe" }, { "id": "b039f3f3-ac73-4f54-98db-d87555f62ab4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b039f3f3-ac73-4f54-98db-d87555f62ab4" }, { "id": "4dbca771-727c-4074-b321-af2c57d10925", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_di?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_di" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4dbca771-727c-4074-b321-af2c57d10925" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-36a2d9bd-a730-477e-b784-0e93f518ca3d" } ], "id": "159333da-aef9-46b7-a0cf-8865431a40b5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-159333da-aef9-46b7-a0cf-8865431a40b5" }, { "name": "plus_dm", "item": [ { "name": "Plus directional movement", "id": "04be8cfd-6340-475b-acad-b15b885e74ad", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Plus Directional Movement (PLUS_DM) endpoint calculates the upward price movement of a financial security over a specified period. It returns numerical values representing the magnitude of upward price changes, which can be used to assess the strength of an uptrend. This data is essential for traders and analysts who need to evaluate the bullish momentum of a security." }, "response": [ { "id": "ee057561-5edf-4538-98c9-d8e18ddcbf93", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"plus_dm\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"plus_dm\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ee057561-5edf-4538-98c9-d8e18ddcbf93" }, { "id": "dd0bce1d-6103-442d-a4a1-ff463075ad62", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd0bce1d-6103-442d-a4a1-ff463075ad62" }, { "id": "88242633-bb14-4ab9-bd98-23b556705ded", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-88242633-bb14-4ab9-bd98-23b556705ded" }, { "id": "f9976330-d5bd-43b3-9df8-a0ace8cb2543", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f9976330-d5bd-43b3-9df8-a0ace8cb2543" }, { "id": "2fb0f6ef-3be4-41df-97a1-7925bafa91bd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fb0f6ef-3be4-41df-97a1-7925bafa91bd" }, { "id": "f92b5240-f089-4ddf-981b-bd055746f383", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f92b5240-f089-4ddf-981b-bd055746f383" }, { "id": "962fb1eb-6ef4-4ae4-a569-3d0fbf3de148", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-962fb1eb-6ef4-4ae4-a569-3d0fbf3de148" }, { "id": "70209b84-1575-40af-8fe0-473b0e96ed6c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/plus_dm?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "plus_dm" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-70209b84-1575-40af-8fe0-473b0e96ed6c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-04be8cfd-6340-475b-acad-b15b885e74ad" } ], "id": "c097535c-23ca-4de5-8766-7e9e35a9de81", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c097535c-23ca-4de5-8766-7e9e35a9de81" }, { "name": "ppo", "item": [ { "name": "Percentage price oscillator", "id": "40ad6f14-27a0-458c-9191-e951eb701a6f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Percentage Price Oscillator (PPO) endpoint calculates the percentage difference between two specified moving averages of a financial instrument's price. It returns data that includes the PPO values, which traders can use to identify potential trend reversals and generate trading signals." }, "response": [ { "id": "39b3a77d-fc33-4dbd-ae49-4d7f6def1c0f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_period\": \"\",\n \"ma_type\": \"\",\n \"name\": \"\",\n \"series_type\": \"\",\n \"slow_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ppo\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ppo\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-39b3a77d-fc33-4dbd-ae49-4d7f6def1c0f" }, { "id": "494703d3-a217-4abd-b63b-5f4816d5dd7d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-494703d3-a217-4abd-b63b-5f4816d5dd7d" }, { "id": "7b644a75-d59d-4970-9f8d-51a50dcf8102", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b644a75-d59d-4970-9f8d-51a50dcf8102" }, { "id": "9214759b-1ceb-48af-b882-a6d75dd92550", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9214759b-1ceb-48af-b882-a6d75dd92550" }, { "id": "6b899dde-e95f-44d2-a2fc-b6dd15428bf4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6b899dde-e95f-44d2-a2fc-b6dd15428bf4" }, { "id": "103754da-7ee1-4ddf-8a32-b1c30c974203", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-103754da-7ee1-4ddf-8a32-b1c30c974203" }, { "id": "7ddbf103-9474-4a09-91e1-75fa58ec6a0e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ddbf103-9474-4a09-91e1-75fa58ec6a0e" }, { "id": "bb22151b-d873-413a-98d3-b8791edcc623", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ppo?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&fast_period=12&slow_period=26&ma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ppo" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods for fast moving average. Takes values in the range from `1` to `800`", "key": "fast_period", "value": "12" }, { "description": "Number of periods for slow moving average. Takes values in the range from `1` to `800`", "key": "slow_period", "value": "26" }, { "description": "The type of moving average used", "key": "ma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bb22151b-d873-413a-98d3-b8791edcc623" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-40ad6f14-27a0-458c-9191-e951eb701a6f" } ], "id": "0ea985be-e7bd-4cfd-a757-68658268798e", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0ea985be-e7bd-4cfd-a757-68658268798e" }, { "name": "press_releases", "item": [ { "name": "Press releases", "id": "87eeacf4-1133-4f6e-916f-7504256e29da", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] }, "description": "The press releases endpoint offers structured, real-time access to official company press releases and corporate announcements from public entities across global markets." }, "response": [ { "id": "0ce753d4-a145-4739-ad86-01d46d2662c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"press_releases\": [\n {\n \"body\": \"\",\n \"datetime\": \"\",\n \"id\": \"\",\n \"title\": \"\",\n \"style\": \"\",\n \"language\": [\n \"\",\n \"\"\n ]\n },\n {\n \"body\": \"\",\n \"datetime\": \"\",\n \"id\": \"\",\n \"title\": \"\",\n \"style\": \"\",\n \"language\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0ce753d4-a145-4739-ad86-01d46d2662c2" }, { "id": "7a15d6e5-7348-45d7-a12b-ba009e8b0366", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7a15d6e5-7348-45d7-a12b-ba009e8b0366" }, { "id": "ca6c5318-b4dc-4b70-9441-c2d00d3ac825", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca6c5318-b4dc-4b70-9441-c2d00d3ac825" }, { "id": "bd22ab64-6abc-408a-8937-a27bdb0b8fa1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bd22ab64-6abc-408a-8937-a27bdb0b8fa1" }, { "id": "27db3c0b-4a6b-4947-85bf-784970e9bcda", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27db3c0b-4a6b-4947-85bf-784970e9bcda" }, { "id": "8e19a00f-ae26-43b2-ad66-7408197b9ae6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e19a00f-ae26-43b2-ad66-7408197b9ae6" }, { "id": "3cfce046-931d-48aa-8139-0edbcc35c105", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3cfce046-931d-48aa-8139-0edbcc35c105" }, { "id": "3d311f38-aaed-491b-8d60-1dfca520a0bf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/press_releases?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&start_date=&end_date=&timezone=&language=&outputsize=2", "host": [ "{{baseUrl}}" ], "path": [ "press_releases" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Begin date for filtering items.\nReturns press releases with release date on or after this date. Format `2025-12-24T02:07:00`", "key": "start_date", "value": "" }, { "description": "End date for filtering items.\nReturns press releases with release date on or before this date. Format `2025-12-24T02:07:00`", "key": "end_date", "value": "" }, { "description": "Time zone for date filtering. Default is the identifier time zone.", "key": "timezone", "value": "" }, { "description": "Comma-separated list of languages to filter press releases by language.", "key": "language", "value": "" }, { "description": "Number of latest press releases returned. Only used if no data range is specified. Maximum value is `10`.\n\ntype: number", "key": "outputsize", "value": "2" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3d311f38-aaed-491b-8d60-1dfca520a0bf" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87eeacf4-1133-4f6e-916f-7504256e29da" } ], "id": "fa50485c-e2f3-42b4-a053-7b47aef52435", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fa50485c-e2f3-42b4-a053-7b47aef52435" }, { "name": "price", "item": [ { "name": "Latest price", "id": "8204df31-df74-4f3a-bb9f-50841f37b3f3", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] }, "description": "The latest price endpoint provides the latest market price for a specified financial instrument. It returns a single data point representing the current (or the most recently available) trading price." }, "response": [ { "id": "db70ae4d-c745-47a5-9260-7ecd1f2ce5b6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"price\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-db70ae4d-c745-47a5-9260-7ecd1f2ce5b6" }, { "id": "8cee297b-9d8f-4860-b3e2-57bcfc7ff3c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8cee297b-9d8f-4860-b3e2-57bcfc7ff3c2" }, { "id": "fa297fc0-0ba5-4d3c-86d9-4721ab47e462", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fa297fc0-0ba5-4d3c-86d9-4721ab47e462" }, { "id": "dd9a3ff7-2a60-4f27-8fd4-974af87af232", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd9a3ff7-2a60-4f27-8fd4-974af87af232" }, { "id": "690df85b-398d-4bee-9e4f-a59eb975ff8e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-690df85b-398d-4bee-9e4f-a59eb975ff8e" }, { "id": "7f38adc0-b3f0-4d32-8468-f422331bbba3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7f38adc0-b3f0-4d32-8468-f422331bbba3" }, { "id": "db00ebdf-d56e-4894-9a8e-ab86e18c4c2a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-db00ebdf-d56e-4894-9a8e-ab86e18c4c2a" }, { "id": "7807f046-b7a0-4f0d-b07d-3285a46450ab", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "price" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for Pro or Venture, and above plans.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7807f046-b7a0-4f0d-b07d-3285a46450ab" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8204df31-df74-4f3a-bb9f-50841f37b3f3" } ], "id": "1f9496ae-7edc-4252-9e2a-e340ac06bead", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1f9496ae-7edc-4252-9e2a-e340ac06bead" }, { "name": "price_target", "item": [ { "name": "Price target", "id": "aeb3587e-cf59-4bbb-80b8-2b327959304f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The price target endpoint provides detailed projections of a security's future price as estimated by financial analysts. It returns data including the high, low, and average price targets. This endpoint is useful for users seeking to understand potential future valuations of specific securities based on expert analysis." }, "response": [ { "id": "54ab6fcb-c61d-4900-8d8a-83dcb8250a76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"price_target\": {\n \"currency\": \"\",\n \"high\": \"\",\n \"median\": \"\",\n \"low\": \"\",\n \"average\": \"\",\n \"current\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-54ab6fcb-c61d-4900-8d8a-83dcb8250a76" }, { "id": "abbba7d6-b668-45ae-88e2-293acff1523b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-abbba7d6-b668-45ae-88e2-293acff1523b" }, { "id": "163fb4c6-c93c-461e-976c-4e4d70cdc727", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-163fb4c6-c93c-461e-976c-4e4d70cdc727" }, { "id": "71fe7984-c930-41e9-95fe-c9e0db0167fc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-71fe7984-c930-41e9-95fe-c9e0db0167fc" }, { "id": "9ae94a7e-b4b2-4e95-8726-aa2ebd95c969", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9ae94a7e-b4b2-4e95-8726-aa2ebd95c969" }, { "id": "8755ae0e-5985-4835-abc4-315c43228104", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8755ae0e-5985-4835-abc4-315c43228104" }, { "id": "b580bbfe-57fd-46ae-b191-9c126932bc75", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b580bbfe-57fd-46ae-b191-9c126932bc75" }, { "id": "fc3ee082-3b31-4bc8-8b4f-71e2e9c063a4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/price_target?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "price_target" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fc3ee082-3b31-4bc8-8b4f-71e2e9c063a4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aeb3587e-cf59-4bbb-80b8-2b327959304f" } ], "id": "cc663af6-a917-4cbc-8d2a-d6f2a45ccda6", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-cc663af6-a917-4cbc-8d2a-d6f2a45ccda6" }, { "name": "profile", "item": [ { "name": "Profile", "id": "d91cffe8-b5b7-492d-948a-d6c221f55084", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The profile endpoint provides detailed company information, including the company's name, industry, sector, CEO, and headquarters location. This data is useful for obtaining a comprehensive overview of a company's business and financial standing." }, "response": [ { "id": "e319e406-7b6a-4f44-b018-d1ad62c8c159", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"sector\": \"\",\n \"industry\": \"\",\n \"employees\": \"\",\n \"website\": \"\",\n \"description\": \"\",\n \"type\": \"\",\n \"CEO\": \"\",\n \"address\": \"\",\n \"address2\": \"\",\n \"city\": \"\",\n \"zip\": \"\",\n \"state\": \"\",\n \"country\": \"\",\n \"phone\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e319e406-7b6a-4f44-b018-d1ad62c8c159" }, { "id": "daa826f9-8a29-4f25-866b-6d8f5389eec3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-daa826f9-8a29-4f25-866b-6d8f5389eec3" }, { "id": "fa0a72b4-fa5f-435a-a173-0554fd70d077", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fa0a72b4-fa5f-435a-a173-0554fd70d077" }, { "id": "150a7699-71ff-4dee-b3de-01707fd364d9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-150a7699-71ff-4dee-b3de-01707fd364d9" }, { "id": "ab6df673-e7e0-40f8-9ca4-8c4d7bba00b0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab6df673-e7e0-40f8-9ca4-8c4d7bba00b0" }, { "id": "5ad144f4-7e4b-4676-b854-506d25f3830a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ad144f4-7e4b-4676-b854-506d25f3830a" }, { "id": "a7722576-30ce-49ca-af3d-272be6b6e90c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a7722576-30ce-49ca-af3d-272be6b6e90c" }, { "id": "1a811031-79ed-401d-a66d-f0c7e7a016fa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/profile?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "profile" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1a811031-79ed-401d-a66d-f0c7e7a016fa" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d91cffe8-b5b7-492d-948a-d6c221f55084" } ], "id": "8d93aa57-3b37-4692-8a63-1f7448f7789f", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-8d93aa57-3b37-4692-8a63-1f7448f7789f" }, { "name": "quote", "item": [ { "name": "Quote", "id": "46fb55a0-a233-4895-93c4-431e6adbb03f", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] }, "description": "The quote endpoint provides real-time data for a selected financial instrument, returning essential information such as the latest price, open, high, low, close, volume, and price change. This endpoint is ideal for users needing up-to-date market data to track price movements and trading activity for specific stocks, ETFs, or other securities." }, "response": [ { "id": "9235621f-90e6-4a10-ad63-8088209ec31c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"change\": \"\",\n \"close\": \"\",\n \"datetime\": \"\",\n \"fifty_two_week\": {\n \"low\": \"\",\n \"high\": \"\",\n \"low_change\": \"\",\n \"high_change\": \"\",\n \"low_change_percent\": \"\",\n \"high_change_percent\": \"\",\n \"range\": \"\"\n },\n \"high\": \"\",\n \"is_market_open\": \"\",\n \"low\": \"\",\n \"name\": \"\",\n \"open\": \"\",\n \"percent_change\": \"\",\n \"previous_close\": \"\",\n \"symbol\": \"\",\n \"timestamp\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"currency\": \"\",\n \"last_quote_at\": \"\",\n \"volume\": \"\",\n \"average_volume\": \"\",\n \"rolling_1d_change\": \"\",\n \"rolling_7d_change\": \"\",\n \"rolling_change\": \"\",\n \"extended_change\": \"\",\n \"extended_percent_change\": \"\",\n \"extended_price\": \"\",\n \"extended_timestamp\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9235621f-90e6-4a10-ad63-8088209ec31c" }, { "id": "1b6b4114-1a93-4b76-b5d5-11bc5ff9b966", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1b6b4114-1a93-4b76-b5d5-11bc5ff9b966" }, { "id": "c43adeaa-49ae-4b02-a2bf-d7aad42c65ae", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c43adeaa-49ae-4b02-a2bf-d7aad42c65ae" }, { "id": "7ff9d213-0a4b-4625-ad3b-b700c76d608d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ff9d213-0a4b-4625-ad3b-b700c76d608d" }, { "id": "e8b73df2-1300-479f-ae01-d2456589eff0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e8b73df2-1300-479f-ae01-d2456589eff0" }, { "id": "b26d4e7e-eaa9-41c8-b291-cd6392708f6b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b26d4e7e-eaa9-41c8-b291-cd6392708f6b" }, { "id": "988ff695-b75c-495d-b829-152e6590146d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-988ff695-b75c-495d-b829-152e6590146d" }, { "id": "00e60193-39f6-49a9-9a92-7dcee89446c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/quote?symbol=&figi=&isin=&cusip=&interval=1day&exchange=&mic_code=&country=&volume_time_period=9&type=Limited Partnership&format=JSON&delimiter=;&prepost=false&eod=false&rolling_period=24&dp=5&timezone=Exchange", "host": [ "{{baseUrl}}" ], "path": [ "quote" ], "query": [ { "description": "Symbol ticker of the instrument", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Interval of the quote", "key": "interval", "value": "1day" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Number of periods for Average Volume", "key": "volume_time_period", "value": "9" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Value can be JSON or CSV\nDefault JSON", "key": "format", "value": "JSON" }, { "description": "Specify the delimiter used when downloading the CSV file", "key": "delimiter", "value": ";" }, { "description": "Parameter is optional. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "If true, then return data for closed day", "key": "eod", "value": "false" }, { "description": "Number of hours for calculate rolling change at period. By default set to 24, it can be in range [1, 168].", "key": "rolling_period", "value": "24" }, { "description": "Specifies the number of decimal places for floating values\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00e60193-39f6-49a9-9a92-7dcee89446c4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-46fb55a0-a233-4895-93c4-431e6adbb03f" } ], "id": "7f4bb1d9-0242-4ec7-858c-d686f8f4d5ea", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-7f4bb1d9-0242-4ec7-858c-d686f8f4d5ea" }, { "name": "recommendations", "item": [ { "name": "Recommendations", "id": "0fc26f84-2597-4636-ba8e-ebeba97fa6c0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] }, "description": "The recommendations endpoint provides a summary of analyst opinions for a specific stock, delivering an average recommendation categorized as Strong Buy, Buy, Hold, or Sell. It also includes a numerical recommendation score, offering a quick overview of market sentiment based on expert analysis." }, "response": [ { "id": "018dc2b4-c435-463a-9373-9e81eabdc543", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"status\": \"\",\n \"trends\": {\n \"current_month\": {\n \"strong_buy\": \"\",\n \"buy\": \"\",\n \"hold\": \"\",\n \"sell\": \"\",\n \"strong_sell\": \"\"\n },\n \"previous_month\": {\n \"strong_buy\": \"\",\n \"buy\": \"\",\n \"hold\": \"\",\n \"sell\": \"\",\n \"strong_sell\": \"\"\n },\n \"2_months_ago\": {\n \"strong_buy\": \"\",\n \"buy\": \"\",\n \"hold\": \"\",\n \"sell\": \"\",\n \"strong_sell\": \"\"\n },\n \"3_months_ago\": {\n \"strong_buy\": \"\",\n \"buy\": \"\",\n \"hold\": \"\",\n \"sell\": \"\",\n \"strong_sell\": \"\"\n }\n },\n \"rating\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-018dc2b4-c435-463a-9373-9e81eabdc543" }, { "id": "8181d448-069e-4d65-9008-6ce0f8eff027", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8181d448-069e-4d65-9008-6ce0f8eff027" }, { "id": "df9e5d19-f28f-4651-81f7-87919d065786", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-df9e5d19-f28f-4651-81f7-87919d065786" }, { "id": "63700d04-6df2-4fe3-993b-58df84df421c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-63700d04-6df2-4fe3-993b-58df84df421c" }, { "id": "f765b387-37e5-44a5-80e5-9bdff70ce643", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f765b387-37e5-44a5-80e5-9bdff70ce643" }, { "id": "a64e532b-40cd-470e-9b48-de495b519354", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a64e532b-40cd-470e-9b48-de495b519354" }, { "id": "bfb75d64-ec4c-4ae4-b664-622b43000cdf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bfb75d64-ec4c-4ae4-b664-622b43000cdf" }, { "id": "be8794c1-714e-492f-a5ea-28c5d7dd3e25", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/recommendations?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "recommendations" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `NSE`.", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-be8794c1-714e-492f-a5ea-28c5d7dd3e25" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0fc26f84-2597-4636-ba8e-ebeba97fa6c0" } ], "id": "30998f7f-4d14-499b-949e-e4c1eae1237d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-30998f7f-4d14-499b-949e-e4c1eae1237d" }, { "name": "revenue_estimate", "item": [ { "name": "Revenue estimate", "id": "e81fb10a-81af-4a5e-ae2c-db482ca69b27", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] }, "description": "The revenue estimate endpoint provides a company's projected quarterly and annual revenue figures based on analysts' estimates. This data is useful for users seeking insights into expected company performance, allowing them to compare forecasted sales with historical data or other companies' estimates." }, "response": [ { "id": "27b47aec-d3d0-451b-9818-67421a50b588", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\"\n },\n \"revenue_estimate\": [\n {\n \"date\": \"\",\n \"period\": \"\",\n \"number_of_analysts\": \"\",\n \"avg_estimate\": \"\",\n \"low_estimate\": \"\",\n \"high_estimate\": \"\",\n \"year_ago_sales\": \"\",\n \"sales_growth\": \"\"\n },\n {\n \"date\": \"\",\n \"period\": \"\",\n \"number_of_analysts\": \"\",\n \"avg_estimate\": \"\",\n \"low_estimate\": \"\",\n \"high_estimate\": \"\",\n \"year_ago_sales\": \"\",\n \"sales_growth\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27b47aec-d3d0-451b-9818-67421a50b588" }, { "id": "5e1b7b07-2bea-4c7b-8d18-a4bcf0fa5c23", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5e1b7b07-2bea-4c7b-8d18-a4bcf0fa5c23" }, { "id": "38f9b343-2f62-4efa-b899-e7f640d67dbd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-38f9b343-2f62-4efa-b899-e7f640d67dbd" }, { "id": "b92a5456-0908-4f10-a6b7-7951b54c3036", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b92a5456-0908-4f10-a6b7-7951b54c3036" }, { "id": "6bde1cad-9ea6-4959-bc5b-04d9949ca5a7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6bde1cad-9ea6-4959-bc5b-04d9949ca5a7" }, { "id": "0f6a6f0a-5509-4ef0-be10-2de171bd7cb0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0f6a6f0a-5509-4ef0-be10-2de171bd7cb0" }, { "id": "927e05cf-b965-40b8-aa2c-cc3e9881981b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-927e05cf-b965-40b8-aa2c-cc3e9881981b" }, { "id": "f6e57ad4-c62c-434e-b970-32b75592684f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/revenue_estimate?symbol=&figi=&isin=&cusip=&country=&exchange=&mic_code=&dp=5", "host": [ "{{baseUrl}}" ], "path": [ "revenue_estimate" ], "query": [ { "description": "Filter by symbol", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., XNAS, XLON.", "key": "mic_code", "value": "" }, { "description": "Number of decimal places for floating values.\nShould be in range [0,11] inclusive", "key": "dp", "value": "5" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f6e57ad4-c62c-434e-b970-32b75592684f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e81fb10a-81af-4a5e-ae2c-db482ca69b27" } ], "id": "9c60c5d6-aefd-4503-94f3-30fb9eca1cf9", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-9c60c5d6-aefd-4503-94f3-30fb9eca1cf9" }, { "name": "roc", "item": [ { "name": "Rate of change", "id": "82445a4a-18d3-48cd-af89-90e747d4a13e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Rate of Change (ROC) endpoint calculates the percentage change in a security's price over a defined period, returning a time series of ROC values. This data helps users track momentum by showing how quickly prices are changing, which can be useful for identifying potential price movements." }, "response": [ { "id": "50564270-ff09-4875-89a7-fc547d6c7f71", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"roc\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"roc\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-50564270-ff09-4875-89a7-fc547d6c7f71" }, { "id": "ed12c0b8-5148-4843-99d8-feb972b387b6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed12c0b8-5148-4843-99d8-feb972b387b6" }, { "id": "17a1e73f-34fa-453f-901c-b8e7c78f355f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-17a1e73f-34fa-453f-901c-b8e7c78f355f" }, { "id": "31cbc37d-2aa2-43e2-8347-330b6c850015", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-31cbc37d-2aa2-43e2-8347-330b6c850015" }, { "id": "b93eec46-ff2c-419a-8d67-83f695dbcedf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b93eec46-ff2c-419a-8d67-83f695dbcedf" }, { "id": "0401aa52-8f83-4210-bca9-baac82a86cb5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0401aa52-8f83-4210-bca9-baac82a86cb5" }, { "id": "101007bc-eb29-46e0-9333-a71197cf08ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-101007bc-eb29-46e0-9333-a71197cf08ce" }, { "id": "2fc0d96c-ee08-4127-905e-cdc4f6b1fcd7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/roc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "roc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2fc0d96c-ee08-4127-905e-cdc4f6b1fcd7" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-82445a4a-18d3-48cd-af89-90e747d4a13e" } ], "id": "f3349f91-f3d3-43f8-b9a3-52765c7d9224", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f3349f91-f3d3-43f8-b9a3-52765c7d9224" }, { "name": "rocp", "item": [ { "name": "Rate of change percentage", "id": "e47fc9dc-0eae-484e-81ca-cad8bbe4667d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Rate of Change Percentage (ROCP) endpoint calculates and returns the percentage change in the price of a financial security over a user-defined period. This data helps users identify shifts in price momentum and potential trend reversals by providing a clear numerical representation of how much the price has increased or decreased in percentage terms." }, "response": [ { "id": "ff15f965-0c25-41e1-9c61-18dffaa3a029", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"rocp\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"rocp\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff15f965-0c25-41e1-9c61-18dffaa3a029" }, { "id": "ebfe28fe-97db-42b6-83d2-f83f0e40d39b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ebfe28fe-97db-42b6-83d2-f83f0e40d39b" }, { "id": "933cc41d-6219-4938-ba9b-d1b3651db347", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-933cc41d-6219-4938-ba9b-d1b3651db347" }, { "id": "91966443-6cc6-4e1e-8815-ab0c94153527", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-91966443-6cc6-4e1e-8815-ab0c94153527" }, { "id": "69f4e557-a159-438f-88e8-85e84e18f22e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-69f4e557-a159-438f-88e8-85e84e18f22e" }, { "id": "81cde8f3-7336-4a82-9f8d-76bf4ac660e9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-81cde8f3-7336-4a82-9f8d-76bf4ac660e9" }, { "id": "3a8ddd85-401e-40d1-b709-f7f02d8315c9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3a8ddd85-401e-40d1-b709-f7f02d8315c9" }, { "id": "95fe7a7a-bae9-4664-82bf-1e0868a0a009", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocp?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocp" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-95fe7a7a-bae9-4664-82bf-1e0868a0a009" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e47fc9dc-0eae-484e-81ca-cad8bbe4667d" } ], "id": "fd6f288e-1d74-4636-a97d-c050775e8f41", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fd6f288e-1d74-4636-a97d-c050775e8f41" }, { "name": "rocr", "item": [ { "name": "Rate of change ratio", "id": "429982fd-589e-4f0e-9581-b0d60e106c54", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Rate of Change Ratio (ROCR) endpoint calculates and returns the ratio of a security's current price to its price from a specified number of periods ago. This data helps users track price momentum and identify potential trend reversals by providing a clear numerical value that reflects price changes over time." }, "response": [ { "id": "4fbd1cf4-3cd9-496e-80dc-55c7d7156192", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"rocr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"rocr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4fbd1cf4-3cd9-496e-80dc-55c7d7156192" }, { "id": "c2a746f9-2816-4920-a90e-ab996289e352", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c2a746f9-2816-4920-a90e-ab996289e352" }, { "id": "7916990a-fc22-4730-9dbe-ea0eb9da1a41", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7916990a-fc22-4730-9dbe-ea0eb9da1a41" }, { "id": "dc3792b5-2e1a-41f0-8736-c456fee41fb7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dc3792b5-2e1a-41f0-8736-c456fee41fb7" }, { "id": "9aa35207-2527-437d-b345-500c51cafd9d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9aa35207-2527-437d-b345-500c51cafd9d" }, { "id": "55c667c2-6aa2-4711-89d1-65311f37d714", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-55c667c2-6aa2-4711-89d1-65311f37d714" }, { "id": "6ede972b-da6d-4e4b-9927-4827a34c7899", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6ede972b-da6d-4e4b-9927-4827a34c7899" }, { "id": "d389f1e5-ac57-4ae0-9011-a45de277658d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d389f1e5-ac57-4ae0-9011-a45de277658d" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-429982fd-589e-4f0e-9581-b0d60e106c54" } ], "id": "61108b33-ac52-445b-9ebc-1aa5230dfeaf", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-61108b33-ac52-445b-9ebc-1aa5230dfeaf" }, { "name": "rocr100", "item": [ { "name": "Rate of change ratio 100", "id": "98e96870-688c-4cf4-8d5a-c17f24932768", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Rate of Change Ratio 100 (ROCR100) endpoint calculates the percentage change in a security's price over a specified period, expressed as a ratio to 100. It returns data that highlights the momentum of the price movement and identifies potential trend reversals. This endpoint is useful for users looking to assess the strength and direction of a security's price trend over time." }, "response": [ { "id": "4367e538-4009-45ec-90e0-3c87e7e1e00d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"rocr100\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"rocr100\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4367e538-4009-45ec-90e0-3c87e7e1e00d" }, { "id": "c800d337-308d-4732-b172-297277762971", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c800d337-308d-4732-b172-297277762971" }, { "id": "5bc1ae56-1a51-49ce-958e-0e8c0141d5d0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5bc1ae56-1a51-49ce-958e-0e8c0141d5d0" }, { "id": "6fa61a77-e468-4833-b79b-d1bf04702a3d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6fa61a77-e468-4833-b79b-d1bf04702a3d" }, { "id": "2c196901-da3a-462b-a623-94847fb0f69c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2c196901-da3a-462b-a623-94847fb0f69c" }, { "id": "a14d58b0-fdca-4e55-bff2-bb9fc7a754d0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a14d58b0-fdca-4e55-bff2-bb9fc7a754d0" }, { "id": "68532cee-be29-40cf-8fbb-b2eb1024d07c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-68532cee-be29-40cf-8fbb-b2eb1024d07c" }, { "id": "a4507c23-d51d-491d-9063-94957c34ba07", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rocr100?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rocr100" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a4507c23-d51d-491d-9063-94957c34ba07" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-98e96870-688c-4cf4-8d5a-c17f24932768" } ], "id": "dffdfe31-bbb9-4df6-ba8f-f2705ad279de", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-dffdfe31-bbb9-4df6-ba8f-f2705ad279de" }, { "name": "rsi", "item": [ { "name": "Relative strength index", "id": "b84d174d-1cf6-4822-bcd2-5d55b56672af", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Relative Strength Index (RSI) endpoint provides data on the RSI values for a specified financial instrument over a given period. It returns a series of RSI values, which indicate the momentum of price movements and help identify potential overbought or oversold conditions. This data is useful for traders looking to assess the strength of price trends and anticipate possible trend reversals." }, "response": [ { "id": "95637f54-f148-470b-b9a7-8478fa1022b8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"rsi\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"rsi\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-95637f54-f148-470b-b9a7-8478fa1022b8" }, { "id": "32dc04fe-1525-40a3-bd7e-062012f6917c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-32dc04fe-1525-40a3-bd7e-062012f6917c" }, { "id": "9270a5eb-17b2-4b3d-aca5-24824ed55064", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9270a5eb-17b2-4b3d-aca5-24824ed55064" }, { "id": "de96328c-65ce-485f-a0c3-513b20b0b21d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-de96328c-65ce-485f-a0c3-513b20b0b21d" }, { "id": "827447d3-8bf8-4f6b-8685-90ca316adc0e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-827447d3-8bf8-4f6b-8685-90ca316adc0e" }, { "id": "8ba58af5-13a1-44f8-97af-324ae03b62d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8ba58af5-13a1-44f8-97af-324ae03b62d6" }, { "id": "a0d4e57d-de99-4edd-994a-d46f5414db10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a0d4e57d-de99-4edd-994a-d46f5414db10" }, { "id": "46c2ff1d-709a-45f0-bd70-2a9dc3e1f90c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-46c2ff1d-709a-45f0-bd70-2a9dc3e1f90c" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b84d174d-1cf6-4822-bcd2-5d55b56672af" } ], "id": "2a133dc9-b1f1-4d75-bc72-0724659a3ff4", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2a133dc9-b1f1-4d75-bc72-0724659a3ff4" }, { "name": "rvol", "item": [ { "name": "Relative volume", "id": "517095b9-e735-4ffe-8a8a-fe28677f934a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Relative Volume endpoint (/rvol) provides a ratio comparing a security's current trading volume to its average volume over a specified period. This data helps users detect unusual trading activity and assess the strength of price movements, offering insights into potential market breakouts." }, "response": [ { "id": "f3bb2706-35e5-4e77-aaa2-f8b316585aca", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"rvol\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"rvol\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f3bb2706-35e5-4e77-aaa2-f8b316585aca" }, { "id": "dedd401c-8c86-4029-b3ca-3e30710c7b10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dedd401c-8c86-4029-b3ca-3e30710c7b10" }, { "id": "d7b93301-ddd8-46c3-b6a1-a87d8fda5afd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d7b93301-ddd8-46c3-b6a1-a87d8fda5afd" }, { "id": "ca1a323b-6fc2-4600-93c0-6a9031f7ff69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca1a323b-6fc2-4600-93c0-6a9031f7ff69" }, { "id": "21e61ba2-10cb-44eb-a4cf-59a53ff69593", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21e61ba2-10cb-44eb-a4cf-59a53ff69593" }, { "id": "3e179d29-fe8d-4a80-adcc-965fae45af70", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3e179d29-fe8d-4a80-adcc-965fae45af70" }, { "id": "bf78043b-21bf-455b-af44-bc6a80e03a10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bf78043b-21bf-455b-af44-bc6a80e03a10" }, { "id": "fb583546-7afe-42a4-8f50-01df750df7b4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/rvol?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "rvol" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fb583546-7afe-42a4-8f50-01df750df7b4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-517095b9-e735-4ffe-8a8a-fe28677f934a" } ], "id": "aa626802-31f0-4642-bc23-e84ec7855e09", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-aa626802-31f0-4642-bc23-e84ec7855e09" }, { "name": "sanctions", "item": [ { "name": "{source}", "item": [ { "name": "Sanctioned entities", "id": "e860fdfc-6691-497d-b096-9424b51b99ae", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "id": "c8841d64-0e14-47ab-9186-5e5f00fdcd00", "key": "source", "value": "uk", "description": "(Required) Sanctions source" } ] }, "description": "The sanctions entities endpoint provides a comprehensive list of entities sanctioned by a specified authority, such as OFAC, UK, EU, or AU. Users can retrieve detailed information about individuals, organizations, and other entities subject to sanctions from the chosen source, facilitating compliance and risk management processes." }, "response": [ { "id": "dcf08dc6-5789-4127-bf2d-9bdb6e5b5edc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"sanctions\": [\n {\n \"country\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"sanction\": {\n \"lists\": [\n {\n \"name\": \"\",\n \"published_at\": \"\"\n },\n {\n \"name\": \"\",\n \"published_at\": \"\"\n }\n ],\n \"notes\": \"\",\n \"program\": \"\",\n \"source\": \"\"\n },\n \"symbol\": \"\"\n },\n {\n \"country\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"sanction\": {\n \"lists\": [\n {\n \"name\": \"\",\n \"published_at\": \"\"\n },\n {\n \"name\": \"\",\n \"published_at\": \"\"\n }\n ],\n \"notes\": \"\",\n \"program\": \"\",\n \"source\": \"\"\n },\n \"symbol\": \"\"\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dcf08dc6-5789-4127-bf2d-9bdb6e5b5edc" }, { "id": "6f61180a-0865-4490-a65a-5f79edacd2d2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6f61180a-0865-4490-a65a-5f79edacd2d2" }, { "id": "153ce431-afb7-418b-bf06-35d77238ce1f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-153ce431-afb7-418b-bf06-35d77238ce1f" }, { "id": "a7314ff0-2bb8-466c-9426-59fdaeff5a9e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a7314ff0-2bb8-466c-9426-59fdaeff5a9e" }, { "id": "36b51dcf-dd7a-4b9a-b0af-a9dfbc9eb047", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-36b51dcf-dd7a-4b9a-b0af-a9dfbc9eb047" }, { "id": "ec1ab20f-37c6-45de-98ae-0cc67570cc30", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec1ab20f-37c6-45de-98ae-0cc67570cc30" }, { "id": "9eace2cd-11ee-4dac-b4ff-fc2ff5db91cf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9eace2cd-11ee-4dac-b4ff-fc2ff5db91cf" }, { "id": "3decd4f5-8138-439a-8122-e6124568549d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sanctions/:source", "host": [ "{{baseUrl}}" ], "path": [ "sanctions", ":source" ], "variable": [ { "key": "source" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3decd4f5-8138-439a-8122-e6124568549d" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e860fdfc-6691-497d-b096-9424b51b99ae" } ], "id": "78f68834-a3c7-47d0-a267-abcb5ffe8fe1", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-78f68834-a3c7-47d0-a267-abcb5ffe8fe1" } ], "id": "d3c54c77-e392-4725-87f1-e94556dba58d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d3c54c77-e392-4725-87f1-e94556dba58d" }, { "name": "sar", "item": [ { "name": "Parabolic stop and reverse", "id": "5269683b-caa1-4085-acba-7ebb775f5123", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Parabolic Stop and Reverse (SAR) endpoint provides data on potential support and resistance levels for a specified security, using its price and time. This endpoint returns numerical values that help traders determine possible entry and exit points in their trading strategies." }, "response": [ { "id": "a6444c62-3d20-44a2-ac3b-008663fc3493", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"acceleration\": \"\",\n \"maximum\": \"\",\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sar\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sar\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a6444c62-3d20-44a2-ac3b-008663fc3493" }, { "id": "71835293-1367-4638-afba-81214356e734", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-71835293-1367-4638-afba-81214356e734" }, { "id": "80529b05-f3f9-4cb3-aac2-6967b7d1c9a4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-80529b05-f3f9-4cb3-aac2-6967b7d1c9a4" }, { "id": "877d9a60-5bb9-4183-ab2a-b8b1da05cd69", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-877d9a60-5bb9-4183-ab2a-b8b1da05cd69" }, { "id": "8d44a407-73a4-4b97-8d68-0a1f25e90a54", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8d44a407-73a4-4b97-8d68-0a1f25e90a54" }, { "id": "6743c5e6-8b12-468d-82c6-8c224170635e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6743c5e6-8b12-468d-82c6-8c224170635e" }, { "id": "b4c3bddc-04de-4918-8607-922393477910", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b4c3bddc-04de-4918-8607-922393477910" }, { "id": "c47758a0-f7c7-47c2-9dab-52797125fdf2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sar?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&acceleration=0.02&maximum=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sar" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The rate of change in the indicator's values.", "key": "acceleration", "value": "0.02" }, { "description": "The maximum value considered for the indicator calculation.", "key": "maximum", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c47758a0-f7c7-47c2-9dab-52797125fdf2" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5269683b-caa1-4085-acba-7ebb775f5123" } ], "id": "3945ef50-781a-48e2-92ce-03d8cdfbb9ea", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3945ef50-781a-48e2-92ce-03d8cdfbb9ea" }, { "name": "sarext", "item": [ { "name": "Parabolic stop and reverse extended", "id": "6fd31b2f-a295-425c-bad6-e0cc3de508b8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Parabolic SAR Extended (SAREXT) endpoint provides a customizable version of the Parabolic SAR indicator, which is used to identify potential entry and exit points in trading. Users can adjust parameters such as acceleration factors to tailor the indicator to specific trading strategies. The endpoint returns data points indicating potential trend reversals." }, "response": [ { "id": "79b0cd9c-2811-49cb-9f64-887bd4ddae57", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"acceleration_limit_long\": \"\",\n \"acceleration_limit_short\": \"\",\n \"acceleration_long\": \"\",\n \"acceleration_max_long\": \"\",\n \"acceleration_max_short\": \"\",\n \"acceleration_short\": \"\",\n \"name\": \"\",\n \"offset_on_reverse\": \"\",\n \"start_value\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sarext\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sarext\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-79b0cd9c-2811-49cb-9f64-887bd4ddae57" }, { "id": "e3fcf5eb-e4e5-4604-93b4-7d87d5dc62b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e3fcf5eb-e4e5-4604-93b4-7d87d5dc62b9" }, { "id": "34506eec-2d5b-4866-b5e5-2ca3569b8e35", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-34506eec-2d5b-4866-b5e5-2ca3569b8e35" }, { "id": "aa29d65d-b891-451d-b5c0-9020ffe242a7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa29d65d-b891-451d-b5c0-9020ffe242a7" }, { "id": "1b992289-ab02-4aa9-9b8b-a9c9b6244ad2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1b992289-ab02-4aa9-9b8b-a9c9b6244ad2" }, { "id": "587e1ef4-d495-446e-825c-929a83bc8a77", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-587e1ef4-d495-446e-825c-929a83bc8a77" }, { "id": "2b1bd330-1ec1-4dbb-96c6-10efbdfa4335", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2b1bd330-1ec1-4dbb-96c6-10efbdfa4335" }, { "id": "c7a0e8fb-e27c-4e3d-95b9-e3ee18084b19", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sarext?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&start_value=0&offset_on_reverse=0&acceleration_limit_long=0.02&acceleration_long=0.02&acceleration_max_long=0.2&acceleration_limit_short=0.02&acceleration_short=0.02&acceleration_max_short=0.2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sarext" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The initial value for the indicator calculation.", "key": "start_value", "value": "0" }, { "description": "The adjustment applied when the indicator's direction changes.", "key": "offset_on_reverse", "value": "0" }, { "description": "The maximum acceleration value for long positions.", "key": "acceleration_limit_long", "value": "0.02" }, { "description": "The acceleration value for long positions.", "key": "acceleration_long", "value": "0.02" }, { "description": "The highest allowed acceleration for long positions.", "key": "acceleration_max_long", "value": "0.2" }, { "description": "The maximum acceleration value for short positions.", "key": "acceleration_limit_short", "value": "0.02" }, { "description": "The acceleration value for short positions.", "key": "acceleration_short", "value": "0.02" }, { "description": "The highest allowed acceleration for short positions.", "key": "acceleration_max_short", "value": "0.2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c7a0e8fb-e27c-4e3d-95b9-e3ee18084b19" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6fd31b2f-a295-425c-bad6-e0cc3de508b8" } ], "id": "c0e210fe-b173-4c6b-95f0-c9fd2a0ca4ca", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c0e210fe-b173-4c6b-95f0-c9fd2a0ca4ca" }, { "name": "sma", "item": [ { "name": "Simple moving average", "id": "fd8d774d-bb67-4337-992e-620cf81575f4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Simple Moving Average (SMA) endpoint calculates and returns the average price of a security over a user-defined time period. This endpoint provides a series of data points that represent the smoothed price trend, which can help users identify potential price movements and evaluate historical price behavior." }, "response": [ { "id": "5dccab06-5eb1-48fc-a970-2f26e8713ffd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5dccab06-5eb1-48fc-a970-2f26e8713ffd" }, { "id": "972bea39-fae9-4c77-936a-94b151e20100", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-972bea39-fae9-4c77-936a-94b151e20100" }, { "id": "042cba30-164d-4cd0-a078-58e236e04800", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-042cba30-164d-4cd0-a078-58e236e04800" }, { "id": "14f47fb9-f999-4fa5-87a5-d390374c1e78", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-14f47fb9-f999-4fa5-87a5-d390374c1e78" }, { "id": "34d9b493-4e4d-492e-8939-c49f92bc6158", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-34d9b493-4e4d-492e-8939-c49f92bc6158" }, { "id": "b3ea98f2-9df0-4cef-8f74-7b2436e7098e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b3ea98f2-9df0-4cef-8f74-7b2436e7098e" }, { "id": "2cae00a2-079f-4ab0-85a4-a641e447e503", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2cae00a2-079f-4ab0-85a4-a641e447e503" }, { "id": "83edd2ab-ece9-4fd9-bd45-3aa608599914", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-83edd2ab-ece9-4fd9-bd45-3aa608599914" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fd8d774d-bb67-4337-992e-620cf81575f4" } ], "id": "fd5437fa-a9f4-4241-92d0-c5a92c2bd7f1", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-fd5437fa-a9f4-4241-92d0-c5a92c2bd7f1" }, { "name": "splits", "item": [ { "name": "Splits", "id": "c6ae691e-7f9d-448b-bb55-bd9776ac18b3", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] }, "description": "The splits endpoint provides historical data on stock split events for a specified company. It returns details including the date of each split and the corresponding split factor." }, "response": [ { "id": "71ad00e7-1f45-4348-9fef-4876e6e3d29b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n \"splits\": [\n {\n \"date\": \"\",\n \"description\": \"\",\n \"from_factor\": \"\",\n \"ratio\": \"\",\n \"to_factor\": \"\"\n },\n {\n \"date\": \"\",\n \"description\": \"\",\n \"from_factor\": \"\",\n \"ratio\": \"\",\n \"to_factor\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-71ad00e7-1f45-4348-9fef-4876e6e3d29b" }, { "id": "00d90241-c635-4625-9c71-9ca073ae3509", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00d90241-c635-4625-9c71-9ca073ae3509" }, { "id": "7b0c8cc3-2ae9-4709-a7ca-d3d4bb34d35c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7b0c8cc3-2ae9-4709-a7ca-d3d4bb34d35c" }, { "id": "6494791c-02cc-419c-8979-74dacfec2812", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6494791c-02cc-419c-8979-74dacfec2812" }, { "id": "cae4c976-677f-4452-9c60-341e17514ea1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cae4c976-677f-4452-9c60-341e17514ea1" }, { "id": "c6927c89-1447-42be-b5c0-c50105c2db28", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6927c89-1447-42be-b5c0-c50105c2db28" }, { "id": "26d7fd04-e9ae-450c-9024-6fa00f819f24", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-26d7fd04-e9ae-450c-9024-6fa00f819f24" }, { "id": "c56ecdb7-790b-455f-ab44-fcb37894e682", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&range=last&start_date=&end_date=", "host": [ "{{baseUrl}}" ], "path": [ "splits" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "Range of data to be returned", "key": "range", "value": "last" }, { "description": "The starting date for data selection. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date for data selection. Format `2006-01-02`", "key": "end_date", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c56ecdb7-790b-455f-ab44-fcb37894e682" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6ae691e-7f9d-448b-bb55-bd9776ac18b3" } ], "id": "64bd3b8c-3267-4d79-a483-9f286fa22516", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-64bd3b8c-3267-4d79-a483-9f286fa22516" }, { "name": "splits_calendar", "item": [ { "name": "Splits calendar", "id": "9b912dbe-23c4-48c7-812c-3263a69a3856", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] }, "description": "The splits calendar endpoint provides a detailed calendar of stock split events within a specified date range. By setting the `start_date` and `end_date` parameters, users can retrieve a list of upcoming or past stock splits, including the company name, split ratio, and effective date. This endpoint is useful for tracking changes in stock structure and planning investment strategies around these events." }, "response": [ { "id": "c6101cd1-a5d4-4939-85ac-3c0a1970e005", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "[\n {\n \"date\": \"\",\n \"description\": \"\",\n \"from_factor\": \"\",\n \"ratio\": \"\",\n \"to_factor\": \"\",\n \"symbol\": \"\",\n \"mic_code\": \"\",\n \"exchange\": \"\"\n },\n {\n \"date\": \"\",\n \"description\": \"\",\n \"from_factor\": \"\",\n \"ratio\": \"\",\n \"to_factor\": \"\",\n \"symbol\": \"\",\n \"mic_code\": \"\",\n \"exchange\": \"\"\n }\n]", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6101cd1-a5d4-4939-85ac-3c0a1970e005" }, { "id": "b8f12a85-fddd-4b8d-a297-26c5c4191b02", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b8f12a85-fddd-4b8d-a297-26c5c4191b02" }, { "id": "1411a784-d284-4e7b-a314-e1551f7c5c08", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1411a784-d284-4e7b-a314-e1551f7c5c08" }, { "id": "f6ea64d4-2e69-4181-bc52-9b90f1405e0b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f6ea64d4-2e69-4181-bc52-9b90f1405e0b" }, { "id": "4443e7ed-ba86-4d17-92fb-802b97261c9b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4443e7ed-ba86-4d17-92fb-802b97261c9b" }, { "id": "4409dddc-83da-4578-a34a-b24e2f1d7923", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4409dddc-83da-4578-a34a-b24e2f1d7923" }, { "id": "00d2ab04-9b84-440c-b0f2-8a79fd4a92ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00d2ab04-9b84-440c-b0f2-8a79fd4a92ef" }, { "id": "b39ea6b4-6b67-41f9-a3e9-896558ebca28", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/splits_calendar?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=&start_date=&end_date=&outputsize=100&page=1", "host": [ "{{baseUrl}}" ], "path": [ "splits_calendar" ], "query": [ { "description": "Symbol ticker of instrument. For preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The starting date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "start_date", "value": "" }, { "description": "The ending date (inclusive) for filtering split events in the calendar. Format `2006-01-02`", "key": "end_date", "value": "" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `500`. Default `100` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "100" }, { "description": "Page number", "key": "page", "value": "1" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b39ea6b4-6b67-41f9-a3e9-896558ebca28" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9b912dbe-23c4-48c7-812c-3263a69a3856" } ], "id": "930137f4-5b7b-4d8a-aa77-7bef7eae4d1d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-930137f4-5b7b-4d8a-aa77-7bef7eae4d1d" }, { "name": "sqrt", "item": [ { "name": "Square root", "id": "049c577e-714a-4807-b684-7e33f790ba88", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Square Root (SQRT) endpoint computes the square root of a specified numerical input. It returns a single numerical value representing the square root, which can be used in various mathematical computations or financial models requiring this specific transformation." }, "response": [ { "id": "a8d9a6e0-4c69-4320-91eb-89fd24989861", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sqrt\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sqrt\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8d9a6e0-4c69-4320-91eb-89fd24989861" }, { "id": "f055df3a-6c0a-4d9b-9402-0b13394752ce", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f055df3a-6c0a-4d9b-9402-0b13394752ce" }, { "id": "1d71460d-1691-405d-b99d-386620aac1ad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1d71460d-1691-405d-b99d-386620aac1ad" }, { "id": "4b3bcff3-a72d-4224-9b23-7d51d5ea0652", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b3bcff3-a72d-4224-9b23-7d51d5ea0652" }, { "id": "43f3e122-f0db-4f7d-8f3c-602bfbea5925", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-43f3e122-f0db-4f7d-8f3c-602bfbea5925" }, { "id": "8a1128b3-475d-48a7-9b21-6478caed31d1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8a1128b3-475d-48a7-9b21-6478caed31d1" }, { "id": "b46b8698-2d99-4a17-b3b8-dfd2d9858c66", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b46b8698-2d99-4a17-b3b8-dfd2d9858c66" }, { "id": "61a6b265-826d-44e5-bd60-c462970835aa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sqrt?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sqrt" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-61a6b265-826d-44e5-bd60-c462970835aa" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-049c577e-714a-4807-b684-7e33f790ba88" } ], "id": "f54989c0-78b4-475e-8a92-97d4e329b511", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f54989c0-78b4-475e-8a92-97d4e329b511" }, { "name": "statistics", "item": [ { "name": "Statistics", "id": "5b0d6b68-983f-41dc-93a1-21a3d5ca6968", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] }, "description": "The statistics endpoint provides a comprehensive snapshot of a company's key financial statistics, including valuation metrics, revenue figures, profit margins, and other essential financial data. This endpoint is ideal for users seeking detailed insights into a company's financial health and performance metrics." }, "response": [ { "id": "4f391dc2-63a4-4525-92e9-f8c0b606e9c2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n \"statistics\": {\n \"valuations_metrics\": {\n \"market_capitalization\": \"\",\n \"enterprise_value\": \"\",\n \"trailing_pe\": \"\",\n \"forward_pe\": \"\",\n \"peg_ratio\": \"\",\n \"price_to_sales_ttm\": \"\",\n \"price_to_book_mrq\": \"\",\n \"enterprise_to_revenue\": \"\",\n \"enterprise_to_ebitda\": \"\"\n },\n \"financials\": {\n \"fiscal_year_ends\": \"\",\n \"most_recent_quarter\": \"\",\n \"gross_margin\": \"\",\n \"profit_margin\": \"\",\n \"operating_margin\": \"\",\n \"return_on_assets_ttm\": \"\",\n \"return_on_equity_ttm\": \"\",\n \"income_statement\": {\n \"revenue_ttm\": \"\",\n \"revenue_per_share_ttm\": \"\",\n \"quarterly_revenue_growth\": \"\",\n \"gross_profit_ttm\": \"\",\n \"ebitda\": \"\",\n \"net_income_to_common_ttm\": \"\",\n \"diluted_eps_ttm\": \"\",\n \"quarterly_earnings_growth_yoy\": \"\"\n },\n \"balance_sheet\": {\n \"total_cash_mrq\": \"\",\n \"total_cash_per_share_mrq\": \"\",\n \"total_debt_mrq\": \"\",\n \"total_debt_to_equity_mrq\": \"\",\n \"current_ratio_mrq\": \"\",\n \"book_value_per_share_mrq\": \"\"\n },\n \"cash_flow\": {\n \"operating_cash_flow_ttm\": \"\",\n \"levered_free_cash_flow_ttm\": \"\"\n }\n },\n \"stock_statistics\": {\n \"shares_outstanding\": \"\",\n \"float_shares\": \"\",\n \"avg_10_volume\": \"\",\n \"avg_90_volume\": \"\",\n \"shares_short\": \"\",\n \"short_ratio\": \"\",\n \"short_percent_of_shares_outstanding\": \"\",\n \"percent_held_by_insiders\": \"\",\n \"percent_held_by_institutions\": \"\"\n },\n \"stock_price_summary\": {\n \"fifty_two_week_low\": \"\",\n \"fifty_two_week_high\": \"\",\n \"fifty_two_week_change\": \"\",\n \"beta\": \"\",\n \"day_50_ma\": \"\",\n \"day_200_ma\": \"\"\n },\n \"dividends_and_splits\": {\n \"forward_annual_dividend_rate\": \"\",\n \"forward_annual_dividend_yield\": \"\",\n \"trailing_annual_dividend_rate\": \"\",\n \"trailing_annual_dividend_yield\": \"\",\n \"5_year_average_dividend_yield\": \"\",\n \"payout_ratio\": \"\",\n \"dividend_frequency\": \"\",\n \"dividend_date\": \"\",\n \"ex_dividend_date\": \"\",\n \"last_split_factor\": \"\",\n \"last_split_date\": \"\"\n }\n }\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4f391dc2-63a4-4525-92e9-f8c0b606e9c2" }, { "id": "8e9dc2e5-f4f2-44f2-90f6-cfa3d8f38492", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e9dc2e5-f4f2-44f2-90f6-cfa3d8f38492" }, { "id": "f75e4664-e3a1-42c7-95bd-659c419daf34", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f75e4664-e3a1-42c7-95bd-659c419daf34" }, { "id": "b38c295a-05ec-44e0-b49d-d7b7b6acaad2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b38c295a-05ec-44e0-b49d-d7b7b6acaad2" }, { "id": "4c8296f8-c082-405d-8b7b-c566cc161c47", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c8296f8-c082-405d-8b7b-c566cc161c47" }, { "id": "02ca3372-9686-4d06-8257-5c533ca80829", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-02ca3372-9686-4d06-8257-5c533ca80829" }, { "id": "9793c7f2-1b2c-4fd1-9097-77736d39eb05", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9793c7f2-1b2c-4fd1-9097-77736d39eb05" }, { "id": "98e0faf5-1187-4db5-a814-193f46182405", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/statistics?symbol=&figi=&isin=&cusip=&exchange=&mic_code=&country=", "host": [ "{{baseUrl}}" ], "path": [ "statistics" ], "query": [ { "description": "Symbol ticker of instrument.\nFor preferred stocks use dot(.) delimiter.\nE.g. `BRK.A` or `BRK.B` will be correct", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Country where instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-98e0faf5-1187-4db5-a814-193f46182405" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5b0d6b68-983f-41dc-93a1-21a3d5ca6968" } ], "id": "0db9558c-4762-4f47-9183-d6e9ebe182b7", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0db9558c-4762-4f47-9183-d6e9ebe182b7" }, { "name": "stddev", "item": [ { "name": "Standard deviation", "id": "4fa86be3-7a96-414a-9da3-e1e6a321312c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Standard Deviation (STDDEV) endpoint calculates the dispersion of a financial instrument's price data from its average value. It returns a numerical value representing the volatility of the asset over a specified period. This endpoint is useful for traders and analysts to assess price variability and identify periods of high or low volatility in the market." }, "response": [ { "id": "1649d62a-9592-4755-946f-f95c59020db9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"sd\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"stddev\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"stddev\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1649d62a-9592-4755-946f-f95c59020db9" }, { "id": "69062354-0b25-496e-9e44-365adb4820a7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-69062354-0b25-496e-9e44-365adb4820a7" }, { "id": "e859d43a-82cf-4cb9-b5f1-66fd1509ff4d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e859d43a-82cf-4cb9-b5f1-66fd1509ff4d" }, { "id": "1a96c7d3-a478-4e01-b0e2-638b4645135f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1a96c7d3-a478-4e01-b0e2-638b4645135f" }, { "id": "9b313eda-a20b-427d-a3a1-db6696eb1f87", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9b313eda-a20b-427d-a3a1-db6696eb1f87" }, { "id": "c921a037-632a-4c47-9fdc-8ed78311fc7a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c921a037-632a-4c47-9fdc-8ed78311fc7a" }, { "id": "4c45d003-8744-4741-8ebb-a1342f03703a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4c45d003-8744-4741-8ebb-a1342f03703a" }, { "id": "a41dfe91-1739-4519-9106-dd4f6543ae47", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stddev?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&sd=2&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stddev" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The standard deviation applied in the calculation.", "key": "sd", "value": "2" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a41dfe91-1739-4519-9106-dd4f6543ae47" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4fa86be3-7a96-414a-9da3-e1e6a321312c" } ], "id": "03dca0e3-d675-4ebc-999c-8efd350f6981", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-03dca0e3-d675-4ebc-999c-8efd350f6981" }, { "name": "stoch", "item": [ { "name": "Stochastic oscillator", "id": "010ec8f5-fdd8-4e25-a547-50c881222c1d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Stochastic Oscillator endpoint provides data on a momentum indicator that evaluates a security's closing price relative to its price range over a specified timeframe. It returns values indicating potential overbought or oversold conditions, aiding in identifying possible trend reversals. Users receive the %K and %D values, which are essential for analyzing the momentum and potential turning points in the market." }, "response": [ { "id": "3e3fd023-c596-40c3-b48c-d067e74b1aec", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_k_period\": \"\",\n \"name\": \"\",\n \"slow_d_period\": \"\",\n \"slow_dma_type\": \"\",\n \"slow_k_period\": \"\",\n \"slow_kma_type\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"slow_d\": \"\",\n \"slow_k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"slow_d\": \"\",\n \"slow_k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3e3fd023-c596-40c3-b48c-d067e74b1aec" }, { "id": "2a8be951-acef-4da1-8f59-d66be329f6cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2a8be951-acef-4da1-8f59-d66be329f6cc" }, { "id": "ace20746-a962-4ad6-ba3b-c5c209fcf7ab", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ace20746-a962-4ad6-ba3b-c5c209fcf7ab" }, { "id": "81e42a24-4439-4d38-a2e2-04f87947cb8a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-81e42a24-4439-4d38-a2e2-04f87947cb8a" }, { "id": "02e0b3c7-de6c-4c11-b36b-38f95f28e8d5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-02e0b3c7-de6c-4c11-b36b-38f95f28e8d5" }, { "id": "78f5e303-e4f6-4df1-86e9-c0778f42f4e5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-78f5e303-e4f6-4df1-86e9-c0778f42f4e5" }, { "id": "1c198ba1-6d89-4a3d-a481-d57eb9cb698d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1c198ba1-6d89-4a3d-a481-d57eb9cb698d" }, { "id": "cce1796e-653f-4695-9aa1-0f187f1adf9e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stoch?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&slow_k_period=1&slow_d_period=3&slow_kma_type=SMA&slow_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stoch" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the slow %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_k_period", "value": "1" }, { "description": "The time period for the slow %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "slow_d_period", "value": "3" }, { "description": "The type of slow %K Moving Average used. Default is SMA.", "key": "slow_kma_type", "value": "SMA" }, { "description": "The type of slow Displaced Moving Average used. Default is SMA.", "key": "slow_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cce1796e-653f-4695-9aa1-0f187f1adf9e" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-010ec8f5-fdd8-4e25-a547-50c881222c1d" } ], "id": "3f651e74-cd2e-454d-9562-3ee1df974016", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-3f651e74-cd2e-454d-9562-3ee1df974016" }, { "name": "stochf", "item": [ { "name": "Stochastic fast", "id": "93bae49c-b959-4f09-a31f-418b94d44062", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Stochastic Fast (STOCHF) endpoint calculates the fast version of the Stochastic Oscillator, providing data on the momentum of a financial instrument by comparing a particular closing price to a range of its prices over a specified period. This endpoint returns the %K and %D values, which are used to identify potential overbought or oversold conditions in the market. It is useful for traders who need quick, responsive insights into price movements, although it may generate more false signals due to its sensitivity." }, "response": [ { "id": "6886ca7d-d901-4e3e-ac20-df029636675d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"fast_d_period\": \"\",\n \"fast_dma_type\": \"\",\n \"fast_k_period\": \"\",\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"fast_d\": \"\",\n \"fast_k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"fast_d\": \"\",\n \"fast_k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6886ca7d-d901-4e3e-ac20-df029636675d" }, { "id": "037b34e3-9885-4035-9bd1-2ef1e5144f4d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-037b34e3-9885-4035-9bd1-2ef1e5144f4d" }, { "id": "a5d61134-43b3-46a9-8971-8311b6146ebf", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a5d61134-43b3-46a9-8971-8311b6146ebf" }, { "id": "79f87e07-fe98-497c-83bd-7234225cce31", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-79f87e07-fe98-497c-83bd-7234225cce31" }, { "id": "bc383084-1142-45d2-8141-173b14f158b4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bc383084-1142-45d2-8141-173b14f158b4" }, { "id": "d8d99224-add0-46ff-88c1-6bfa76f04eb3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d8d99224-add0-46ff-88c1-6bfa76f04eb3" }, { "id": "13fbf59a-9524-45d6-b41f-f004a74e489f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-13fbf59a-9524-45d6-b41f-f004a74e489f" }, { "id": "d6af1b31-287e-42ad-b8cd-c63133661cc0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&fast_k_period=14&fast_d_period=3&fast_dma_type=SMA&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the fast %K line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_k_period", "value": "14" }, { "description": "The time period for the fast %D line in the Stochastic Oscillator. Takes values in the range from `1` to `800`", "key": "fast_d_period", "value": "3" }, { "description": "The type of fast Displaced Moving Average used.", "key": "fast_dma_type", "value": "SMA" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d6af1b31-287e-42ad-b8cd-c63133661cc0" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-93bae49c-b959-4f09-a31f-418b94d44062" } ], "id": "45066a41-c8a5-4cb9-918c-cd63b4fce583", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-45066a41-c8a5-4cb9-918c-cd63b4fce583" }, { "name": "stochrsi", "item": [ { "name": "Stochastic relative strength index", "id": "58bf364c-e4d0-471b-9428-e661845c3d64", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Stochastic Relative Strength Index (Stochastic RSI) endpoint calculates the Stochastic RSI values for a given financial instrument, providing data on its momentum and potential price reversals. This endpoint returns time-series data, including the %K and %D lines, which help users identify overbought or oversold conditions. Ideal for traders seeking to refine entry and exit points by analyzing short-term price movements." }, "response": [ { "id": "831d6ede-d32b-4595-8fd3-806a1df7754f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"d_period\": \"\",\n \"k_period\": \"\",\n \"name\": \"\",\n \"rsi_length\": \"\",\n \"series_type\": \"\",\n \"stoch_length\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"d\": \"\",\n \"datetime\": \"\",\n \"k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"d\": \"\",\n \"datetime\": \"\",\n \"k\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-831d6ede-d32b-4595-8fd3-806a1df7754f" }, { "id": "7ea1781d-096c-44ae-9b98-829ff601fdc9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ea1781d-096c-44ae-9b98-829ff601fdc9" }, { "id": "9057fa79-9259-4c02-b5ad-cd2f1f05c275", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9057fa79-9259-4c02-b5ad-cd2f1f05c275" }, { "id": "8b58cec4-8ece-4ac0-9af9-0afc27ea3973", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8b58cec4-8ece-4ac0-9af9-0afc27ea3973" }, { "id": "ddb2bb97-0923-468e-b8f4-57927865201a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ddb2bb97-0923-468e-b8f4-57927865201a" }, { "id": "503ca28e-6d12-488e-b23e-98acd686d3a8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-503ca28e-6d12-488e-b23e-98acd686d3a8" }, { "id": "5d662fe9-a4ba-44f9-ba46-cd0e8b3b36cc", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5d662fe9-a4ba-44f9-ba46-cd0e8b3b36cc" }, { "id": "4a0f637d-6652-4357-b277-1b477f716972", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stochrsi?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=close&rsi_length=14&stoch_length=14&k_period=3&slow_kma_type=&d_period=3&slow_dma_type=&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "stochrsi" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specifies the price data type: open, high, low, or close.", "key": "series_type", "value": "close" }, { "description": "Length of period for calculating the RSI component. Takes values in the range from `1` to `800`", "key": "rsi_length", "value": "14" }, { "description": "Period length for computing the stochastic oscillator of the RSI. Takes values in the range from `1` to `800`", "key": "stoch_length", "value": "14" }, { "description": "Period for smoothing the %K line. Takes values in the range from `1` to `800`", "key": "k_period", "value": "3" }, { "key": "slow_kma_type", "value": "" }, { "description": "Period for smoothing the %D line, which is a moving average of %K. Takes values in the range from `1` to `800`", "key": "d_period", "value": "3" }, { "key": "slow_dma_type", "value": "" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4a0f637d-6652-4357-b277-1b477f716972" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-58bf364c-e4d0-471b-9428-e661845c3d64" } ], "id": "d23106c6-4590-447a-935a-4b9968b85378", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d23106c6-4590-447a-935a-4b9968b85378" }, { "name": "stocks", "item": [ { "name": "Stocks", "id": "97234af1-9336-44b3-8535-727a5cf6569b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] }, "description": "The stocks endpoint provides a daily updated list of all available stock symbols. It returns an array containing the symbols, which can be used to identify and access specific stock data across various services. This endpoint is essential for users needing to retrieve the latest stock symbol information for further data requests or integration into financial applications." }, "response": [ { "id": "4e0e8735-09d8-4aed-9680-08770aa7ccad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"count\": \"\",\n \"data\": [\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"cfi_code\": \"\",\n \"country\": \"\",\n \"currency\": \"\",\n \"cusip\": \"\",\n \"exchange\": \"\",\n \"figi_code\": \"\",\n \"isin\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4e0e8735-09d8-4aed-9680-08770aa7ccad" }, { "id": "c6968fcd-8fe1-4f53-9813-3d5073628817", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6968fcd-8fe1-4f53-9813-3d5073628817" }, { "id": "c8acfa86-95f5-4441-aa0e-2bfbdf6eeafe", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8acfa86-95f5-4441-aa0e-2bfbdf6eeafe" }, { "id": "b774f6a5-05c3-4853-8440-7ed60248e7b1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b774f6a5-05c3-4853-8440-7ed60248e7b1" }, { "id": "dad523c7-4ae6-434c-a9df-ebfcc4195ed4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dad523c7-4ae6-434c-a9df-ebfcc4195ed4" }, { "id": "f3080bb4-7a8a-4862-92bd-4220ea83d2a1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f3080bb4-7a8a-4862-92bd-4220ea83d2a1" }, { "id": "bdd2f074-96fe-4156-9e05-801c098da8fa", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bdd2f074-96fe-4156-9e05-801c098da8fa" }, { "id": "653d2fba-ce38-4a16-b2a6-3f4c4f3dfd17", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/stocks?symbol=&figi=&isin=&cusip=&cik=&exchange=&mic_code=&country=&type=Limited Partnership&format=JSON&delimiter=;&show_plan=false&include_delisted=false&page=1&outputsize=", "host": [ "{{baseUrl}}" ], "path": [ "stocks" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested", "key": "symbol", "value": "" }, { "description": "Filter by financial instrument global identifier (FIGI). This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The CIK of an instrument for which data is requested", "key": "cik", "value": "" }, { "description": "Filter by exchange name", "key": "exchange", "value": "" }, { "description": "Filter by market identifier code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "Filter by country name or alpha code, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Adds info on which plan symbol is available", "key": "show_plan", "value": "false" }, { "description": "Include delisted identifiers", "key": "include_delisted", "value": "false" }, { "description": "Page number of the results to fetch", "key": "page", "value": "1" }, { "description": "Determines the number of data points returned in the output", "key": "outputsize", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-653d2fba-ce38-4a16-b2a6-3f4c4f3dfd17" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-97234af1-9336-44b3-8535-727a5cf6569b" } ], "id": "a33ea878-07d9-45c6-9a44-f60e7eedde90", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a33ea878-07d9-45c6-9a44-f60e7eedde90" }, { "name": "sub", "item": [ { "name": "Subtraction", "id": "e2f60559-3504-4c7e-9a88-89f5043072cc", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Subtraction (SUB) endpoint calculates the difference between two input data series, such as technical indicators or price data. It returns a time series of the resulting values, allowing users to compare or normalize data by highlighting the variance between the two series." }, "response": [ { "id": "ec366362-c5a3-4474-9f63-66d627563757", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type_1\": \"\",\n \"series_type_2\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sub\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sub\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec366362-c5a3-4474-9f63-66d627563757" }, { "id": "1949a4a8-e845-4be8-813f-e1f632f96b57", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1949a4a8-e845-4be8-813f-e1f632f96b57" }, { "id": "dee6736a-ba79-46d8-94ef-3b2ba8706d1a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dee6736a-ba79-46d8-94ef-3b2ba8706d1a" }, { "id": "9dabbb46-3993-4d3e-ad6b-f78e80288b5a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9dabbb46-3993-4d3e-ad6b-f78e80288b5a" }, { "id": "e8e63c8d-87e7-4895-9ffe-cc262eaf589c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e8e63c8d-87e7-4895-9ffe-cc262eaf589c" }, { "id": "1be308d6-3f3e-4929-a599-dfae7a2cbd2d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1be308d6-3f3e-4929-a599-dfae7a2cbd2d" }, { "id": "ca491bbb-8a00-40c9-bfa9-97382befd528", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ca491bbb-8a00-40c9-bfa9-97382befd528" }, { "id": "33cc974f-3ab0-4e25-b369-4781127131a9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sub?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type_1=open&series_type_2=open&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sub" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type used as the first part of technical indicator", "key": "series_type_1", "value": "open" }, { "description": "Price type used as the second part of technical indicator", "key": "series_type_2", "value": "open" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-33cc974f-3ab0-4e25-b369-4781127131a9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e2f60559-3504-4c7e-9a88-89f5043072cc" } ], "id": "551dc680-7549-40c1-8b83-9bcc26df9987", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-551dc680-7549-40c1-8b83-9bcc26df9987" }, { "name": "sum", "item": [ { "name": "Summation", "id": "be8a7166-5150-4373-b93e-424b732f11c7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Summation (SUM) endpoint calculates the cumulative total of a specified data series over a defined time period. It returns a numerical value representing the sum, which can be used to track the aggregate value of financial data, such as stock prices or trading volumes, over time. This endpoint is useful for users needing to compute the total accumulation of a dataset for further analysis or reporting." }, "response": [ { "id": "27c6c672-6023-4ba5-aebf-b128fef7b15b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"sum\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"sum\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-27c6c672-6023-4ba5-aebf-b128fef7b15b" }, { "id": "a9f43ecf-3d46-4807-b069-75bcce7636ac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a9f43ecf-3d46-4807-b069-75bcce7636ac" }, { "id": "809ad0db-0d70-49e5-bc6f-b792fc02ea58", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-809ad0db-0d70-49e5-bc6f-b792fc02ea58" }, { "id": "d0694805-decc-4bd5-94e7-c799ab3fc6cd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d0694805-decc-4bd5-94e7-c799ab3fc6cd" }, { "id": "814758c9-3fb2-49c5-8c78-0145b707859c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-814758c9-3fb2-49c5-8c78-0145b707859c" }, { "id": "7bfd655f-57f7-41a0-b999-8f8b937bf5af", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7bfd655f-57f7-41a0-b999-8f8b937bf5af" }, { "id": "c43b7ee9-f6ca-4c8f-a133-d59ed4cf87f3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c43b7ee9-f6ca-4c8f-a133-d59ed4cf87f3" }, { "id": "d9c02631-e683-4b2e-bde9-98019e72788a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/sum?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "sum" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d9c02631-e683-4b2e-bde9-98019e72788a" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-be8a7166-5150-4373-b93e-424b732f11c7" } ], "id": "f89fc443-95ab-4e4c-bbd5-2b95ecfdc436", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f89fc443-95ab-4e4c-bbd5-2b95ecfdc436" }, { "name": "supertrend", "item": [ { "name": "Supertrend", "id": "2cb2c5fd-c047-4e5b-8005-5777d44e5e3a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Supertrend endpoint provides data on the Supertrend indicator, a tool used to identify potential buy and sell signals in trending markets. It returns values that indicate the current trend direction and potential reversal points based on price, time, and volatility. Users can leverage this data to pinpoint optimal entry and exit points for trades." }, "response": [ { "id": "b139334e-0c38-482c-bfa4-11a54eaef924", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"multiplier\": \"\",\n \"name\": \"\",\n \"period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"supertrend\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"supertrend\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b139334e-0c38-482c-bfa4-11a54eaef924" }, { "id": "357fc16a-fa84-4290-b2ec-0e0f8815a421", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-357fc16a-fa84-4290-b2ec-0e0f8815a421" }, { "id": "62acdfb4-9218-4873-bcce-406e37feeaf4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-62acdfb4-9218-4873-bcce-406e37feeaf4" }, { "id": "ab1c260e-5b29-4535-b651-3935d4ca5008", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab1c260e-5b29-4535-b651-3935d4ca5008" }, { "id": "84866778-d269-4342-8420-8767a9a57341", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-84866778-d269-4342-8420-8767a9a57341" }, { "id": "83f1dc6b-58bb-4827-b8bb-b052044c8cf6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-83f1dc6b-58bb-4827-b8bb-b052044c8cf6" }, { "id": "ec0571d6-1b8a-46d9-8550-4aa4cf4bd3f4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ec0571d6-1b8a-46d9-8550-4aa4cf4bd3f4" }, { "id": "01c258ce-f22c-4b2e-b4cd-297a16fbf77b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-01c258ce-f22c-4b2e-b4cd-297a16fbf77b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2cb2c5fd-c047-4e5b-8005-5777d44e5e3a" } ], "id": "5e367582-5b83-4103-8434-0545ab408e0c", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-5e367582-5b83-4103-8434-0545ab408e0c" }, { "name": "supertrend_heikinashicandles", "item": [ { "name": "Supertrend Heikin Ashi candles", "id": "3d73b12e-774b-4d97-994e-eab66f83fb99", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Supertrend Heikin Ashi candles endpoint provides data combining Supertrend signals with Heikin Ashi candlestick patterns. It returns a series of data points indicating trend direction and smoothed price movements, useful for identifying potential buy or sell opportunities in trading." }, "response": [ { "id": "44622444-8a00-471e-9d52-968c945b51e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"multiplier\": \"\",\n \"name\": \"\",\n \"period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"heikincloses\": \"\",\n \"heikinhighs\": \"\",\n \"heikinlows\": \"\",\n \"heikinopens\": \"\",\n \"supertrend\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"heikincloses\": \"\",\n \"heikinhighs\": \"\",\n \"heikinlows\": \"\",\n \"heikinopens\": \"\",\n \"supertrend\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-44622444-8a00-471e-9d52-968c945b51e8" }, { "id": "037be5cb-8656-45a5-b590-9f9bf89a2020", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-037be5cb-8656-45a5-b590-9f9bf89a2020" }, { "id": "3706ddde-49ab-4dd5-9eca-764c5bdc6c10", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3706ddde-49ab-4dd5-9eca-764c5bdc6c10" }, { "id": "2549f8f5-4fa1-4ec6-afa4-d46aa92f95f2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2549f8f5-4fa1-4ec6-afa4-d46aa92f95f2" }, { "id": "2209afe9-4093-4a49-8b15-4b35c941448f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2209afe9-4093-4a49-8b15-4b35c941448f" }, { "id": "dfc9bac2-6cbd-4ef5-a22c-0c8db1e47b75", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dfc9bac2-6cbd-4ef5-a22c-0c8db1e47b75" }, { "id": "9c2467fa-d49d-4d33-a30b-52d93c24d47a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9c2467fa-d49d-4d33-a30b-52d93c24d47a" }, { "id": "7de9b13e-16cf-4102-b6d2-4ad1f17d4196", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/supertrend_heikinashicandles?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&period=10&multiplier=3&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "supertrend_heikinashicandles" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "period", "value": "10" }, { "description": "The factor used to adjust the indicator's sensitivity.", "key": "multiplier", "value": "3" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7de9b13e-16cf-4102-b6d2-4ad1f17d4196" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3d73b12e-774b-4d97-994e-eab66f83fb99" } ], "id": "65090548-3502-40c1-8c51-d858442a241d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-65090548-3502-40c1-8c51-d858442a241d" }, { "name": "symbol_search", "item": [ { "name": "Symbol search", "id": "0e8ecc8b-db63-458c-be32-afdf8711d172", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] }, "description": "The symbol search endpoint allows users to find financial instruments by name or symbol. It returns a list of matching symbols, ordered by relevance, with the most relevant instrument first. This is useful for quickly locating specific stocks, ETFs, or other financial instruments when only partial information is available." }, "response": [ { "id": "d876732d-2d14-4f18-84e5-9ad2b5a51fdd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"instrument_name\": \"\",\n \"instrument_type\": \"\",\n \"mic_code\": \"\",\n \"symbol\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n },\n {\n \"country\": \"\",\n \"currency\": \"\",\n \"exchange\": \"\",\n \"exchange_timezone\": \"\",\n \"instrument_name\": \"\",\n \"instrument_type\": \"\",\n \"mic_code\": \"\",\n \"symbol\": \"\",\n \"access\": {\n \"global\": \"\",\n \"plan\": \"\",\n \"plan_business\": \"\"\n }\n }\n ],\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d876732d-2d14-4f18-84e5-9ad2b5a51fdd" }, { "id": "acbb1fa6-d3a7-48c9-9543-00616fc64001", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-acbb1fa6-d3a7-48c9-9543-00616fc64001" }, { "id": "c2aac558-e883-4bd9-a229-b951612388d7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c2aac558-e883-4bd9-a229-b951612388d7" }, { "id": "6aeb98ea-8f74-44e7-9247-821537ee8dff", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6aeb98ea-8f74-44e7-9247-821537ee8dff" }, { "id": "35271cf2-5b32-44b7-b30a-7c56444d79b6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-35271cf2-5b32-44b7-b30a-7c56444d79b6" }, { "id": "18caad40-b69e-489b-a0b0-10df09e61926", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-18caad40-b69e-489b-a0b0-10df09e61926" }, { "id": "983acc7e-e2cc-4bee-a051-6816eb11170b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-983acc7e-e2cc-4bee-a051-6816eb11170b" }, { "id": "3c9af0f2-4166-4c2c-ae26-979229c5483d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/symbol_search?symbol=&outputsize=30&show_plan=false", "host": [ "{{baseUrl}}" ], "path": [ "symbol_search" ], "query": [ { "description": "(Required) Symbol to search. Supports:\n
    \n
  • Ticker symbol of instrument.
  • \n
  • International securities identification number (ISIN). ISIN access is activating in the Data add-ons section
  • \n
  • The FIGI (Financial Instrument Global Identifier) parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Composite FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
  • Share Class FIGI parameter is available on the Ultra plan (individual) and Enterprise plan (business) and above.
  • \n
", "key": "symbol", "value": "" }, { "description": "Number of matches in response. Max 120", "key": "outputsize", "value": "30" }, { "description": "Adds info on which plan symbol is available.", "key": "show_plan", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3c9af0f2-4166-4c2c-ae26-979229c5483d" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0e8ecc8b-db63-458c-be32-afdf8711d172" } ], "id": "b18f64be-5aaa-46ba-9a8a-299660e4efed", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b18f64be-5aaa-46ba-9a8a-299660e4efed" }, { "name": "t3ma", "item": [ { "name": "Triple exponential moving average", "id": "4f0d1d48-a8c0-49fb-a3dd-c8968d5edca2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Triple Exponential Moving Average (T3MA) endpoint calculates a smoothed moving average using three exponential moving averages on price data. It returns a dataset that highlights price trends with reduced lag, offering precise trend analysis. This is useful for identifying trend direction and potential reversal points." }, "response": [ { "id": "4e40cc65-e917-45c9-a170-27479c91c982", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\",\n \"v_factor\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"t3ma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"t3ma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4e40cc65-e917-45c9-a170-27479c91c982" }, { "id": "37eb1664-41b4-4743-a11a-bb67065ca9fb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-37eb1664-41b4-4743-a11a-bb67065ca9fb" }, { "id": "30c226e5-6ae0-46c1-a782-6daeb7252924", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-30c226e5-6ae0-46c1-a782-6daeb7252924" }, { "id": "1b0d80b1-b92b-4b3e-bda5-6473c269fc16", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1b0d80b1-b92b-4b3e-bda5-6473c269fc16" }, { "id": "c0667c3f-41d8-4e9c-99eb-6157723aa6b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c0667c3f-41d8-4e9c-99eb-6157723aa6b9" }, { "id": "a8cbb6ce-4a85-410d-83f7-f9dbe03b9db1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8cbb6ce-4a85-410d-83f7-f9dbe03b9db1" }, { "id": "0e467dbd-4a46-402d-b62d-0462a1eae088", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0e467dbd-4a46-402d-b62d-0462a1eae088" }, { "id": "52ee7cee-437f-4932-9695-78832875356f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/t3ma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&v_factor=0.7&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "t3ma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "The factor used to adjust the indicator's volatility. Takes values in the range from `0` to `1`", "key": "v_factor", "value": "0.7" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-52ee7cee-437f-4932-9695-78832875356f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4f0d1d48-a8c0-49fb-a3dd-c8968d5edca2" } ], "id": "d4950d5e-ed38-40ab-8aaf-98e7118142e2", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-d4950d5e-ed38-40ab-8aaf-98e7118142e2" }, { "name": "tax_info", "item": [ { "name": "Tax information", "id": "3db3c151-bdfe-4ac4-99a4-70410ec9e12a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] }, "description": "The tax information endpoint provides detailed tax-related data for a specified financial instrument, including applicable tax rates and relevant tax codes. This information is essential for users needing to understand the tax implications associated with trading or investing in specific instruments." }, "response": [ { "id": "2f74b921-440a-4202-b32c-949ff68b52c1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"tax_indicator\": \"\"\n },\n \"meta\": {\n \"country\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\",\n \"name\": \"\",\n \"symbol\": \"\"\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2f74b921-440a-4202-b32c-949ff68b52c1" }, { "id": "e9618407-8f4c-43a8-b0d9-56d77172f5ac", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e9618407-8f4c-43a8-b0d9-56d77172f5ac" }, { "id": "ab0c8698-ebbe-497c-b22a-a80b562d41d7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab0c8698-ebbe-497c-b22a-a80b562d41d7" }, { "id": "1e82a0b9-e1ee-41b4-8ae0-fa7d965efcc9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1e82a0b9-e1ee-41b4-8ae0-fa7d965efcc9" }, { "id": "89f3fb1a-9a49-40a9-93ca-c12ab4650f3c", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-89f3fb1a-9a49-40a9-93ca-c12ab4650f3c" }, { "id": "189d1cef-0d3c-4b13-8b9d-66e22ca06966", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-189d1cef-0d3c-4b13-8b9d-66e22ca06966" }, { "id": "87b8a538-09b8-4a1c-a9e5-c3750bd4f554", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87b8a538-09b8-4a1c-a9e5-c3750bd4f554" }, { "id": "722ad3fc-71a9-47c6-bbe8-58dca78b23e1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tax_info?symbol=&isin=&figi=&cusip=&exchange=&mic_code=", "host": [ "{{baseUrl}}" ], "path": [ "tax_info" ], "query": [ { "description": "The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`.", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext`", "key": "exchange", "value": "" }, { "description": "The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON`", "key": "mic_code", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-722ad3fc-71a9-47c6-bbe8-58dca78b23e1" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3db3c151-bdfe-4ac4-99a4-70410ec9e12a" } ], "id": "0b42ad69-cd3d-4ee8-b9ca-bf50311d25f1", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-0b42ad69-cd3d-4ee8-b9ca-bf50311d25f1" }, { "name": "technical_indicators", "item": [ { "name": "Technical indicators", "id": "45935b4c-a1b1-4e74-a9e7-2e94cdb4b917", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] }, "description": "The technical indicators endpoint provides a comprehensive list of available technical indicators, each represented as an object. This endpoint is useful for developers looking to integrate a variety of technical analysis tools into their applications, allowing for streamlined access to indicator data without needing to manually configure each one." }, "response": [ { "id": "96fc0141-4108-4e14-8112-3e5bf8427609", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"ut_d47\": {\n \"description\": \"\",\n \"enable\": \"\",\n \"full_name\": \"\",\n \"overlay\": \"\",\n \"type\": \"\",\n \"output_values\": {\n \"parameter_name\": {\n \"default_color\": \"\",\n \"display\": \"candle\",\n \"min_range\": \"\",\n \"max_range\": \"\"\n }\n },\n \"parameters\": {\n \"parameter_name\": {\n \"default\": \"\",\n \"max_range\": \"\",\n \"min_range\": \"\",\n \"range\": [\n \"\",\n \"\"\n ],\n \"type\": \"\"\n }\n },\n \"tinting\": {\n \"display\": \"\",\n \"color\": \"\",\n \"transparency\": \"\",\n \"lower_bound\": {},\n \"upper_bound\": {}\n }\n },\n \"Ut5\": {\n \"description\": \"\",\n \"enable\": \"\",\n \"full_name\": \"\",\n \"overlay\": \"\",\n \"type\": \"\",\n \"output_values\": {\n \"parameter_name\": {\n \"default_color\": \"\",\n \"display\": \"histogram\",\n \"min_range\": \"\",\n \"max_range\": \"\"\n }\n },\n \"parameters\": {\n \"parameter_name\": {\n \"default\": \"\",\n \"max_range\": \"\",\n \"min_range\": \"\",\n \"range\": [\n \"\",\n \"\"\n ],\n \"type\": \"\"\n }\n },\n \"tinting\": {\n \"display\": \"\",\n \"color\": \"\",\n \"transparency\": \"\",\n \"lower_bound\": {},\n \"upper_bound\": {}\n }\n }\n },\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-96fc0141-4108-4e14-8112-3e5bf8427609" }, { "id": "e68ec754-8f5f-44f4-b7cf-4c8873194cee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e68ec754-8f5f-44f4-b7cf-4c8873194cee" }, { "id": "337086e7-1bb9-499c-82e5-4255cfa6909e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-337086e7-1bb9-499c-82e5-4255cfa6909e" }, { "id": "1a20cea1-d83d-4f2d-9a28-2d6b48254bb3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1a20cea1-d83d-4f2d-9a28-2d6b48254bb3" }, { "id": "0dbb063a-030c-40a2-a85f-2c59e1ebfdb6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0dbb063a-030c-40a2-a85f-2c59e1ebfdb6" }, { "id": "e21de600-dc59-4cb0-a62d-ad0fce0128f2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e21de600-dc59-4cb0-a62d-ad0fce0128f2" }, { "id": "13a2fe17-49a2-496f-85df-ca7a20ab3c7a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-13a2fe17-49a2-496f-85df-ca7a20ab3c7a" }, { "id": "931fcc4e-88b9-47b6-b07f-481c284023b9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/technical_indicators", "host": [ "{{baseUrl}}" ], "path": [ "technical_indicators" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-931fcc4e-88b9-47b6-b07f-481c284023b9" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-45935b4c-a1b1-4e74-a9e7-2e94cdb4b917" } ], "id": "a29037ec-f47c-4e99-82d4-db8dac3a2607", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a29037ec-f47c-4e99-82d4-db8dac3a2607" }, { "name": "tema", "item": [ { "name": "Triple exponential moving average", "id": "ffb925ec-385b-4ec1-b1be-4110bef90ace", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Triple Exponential Moving Average (TEMA) endpoint calculates and returns the TEMA values for a specified financial instrument over a given time period. This endpoint provides a series of data points that smooth out price fluctuations by applying three layers of exponential moving averages, allowing users to identify and track underlying trends in the instrument's price movement." }, "response": [ { "id": "6a4dfb2a-83bf-42c8-a226-3d884e1855f9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"tema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"tema\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6a4dfb2a-83bf-42c8-a226-3d884e1855f9" }, { "id": "ff78f92d-1fa6-4833-b725-0c3ce443f759", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ff78f92d-1fa6-4833-b725-0c3ce443f759" }, { "id": "09e6eb2d-316d-415a-b0ba-3140f5076760", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-09e6eb2d-316d-415a-b0ba-3140f5076760" }, { "id": "231a18b9-8969-4b99-b6ab-1f3061baef05", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-231a18b9-8969-4b99-b6ab-1f3061baef05" }, { "id": "abb109ec-e083-46ed-8182-db8012c54631", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-abb109ec-e083-46ed-8182-db8012c54631" }, { "id": "8e24925f-a963-4f9c-906b-955307f3f252", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e24925f-a963-4f9c-906b-955307f3f252" }, { "id": "0430429e-cc8a-46c1-9d15-bfd0d0bff887", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0430429e-cc8a-46c1-9d15-bfd0d0bff887" }, { "id": "d4fd18dc-0e86-49b2-9f3e-59e78b5c7a90", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tema?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tema" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "The time period used for calculation in the indicator. Default is 9.", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d4fd18dc-0e86-49b2-9f3e-59e78b5c7a90" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ffb925ec-385b-4ec1-b1be-4110bef90ace" } ], "id": "f9b0c879-47e6-40cc-8bb3-360896d4b718", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-f9b0c879-47e6-40cc-8bb3-360896d4b718" }, { "name": "time_series", "item": [ { "name": "cross", "item": [ { "name": "Time series cross", "id": "34e8964c-943c-47ef-9b22-fa90e5912356", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] }, "description": "The Time Series Cross endpoint calculates and returns historical cross-rate data for exotic forex pairs, cryptocurrencies, or stocks (e.g., Apple Inc. price in Indian Rupees) on the fly. It provides metadata about the requested symbol and a time series array with Open, High, Low, and Close prices, sorted descending by time, enabling analysis of price history and market trends." }, "response": [ { "id": "ed6a9e13-e91e-47c1-956a-639e86bd303b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"base_currency\": \"\",\n \"base_exchange\": \"\",\n \"base_instrument\": \"\",\n \"interval\": \"\",\n \"quote_currency\": \"\",\n \"quote_exchange\": \"\",\n \"quote_instrument\": \"\"\n },\n \"values\": [\n {\n \"close\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"open\": \"\"\n },\n {\n \"close\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"open\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed6a9e13-e91e-47c1-956a-639e86bd303b" }, { "id": "4261b854-fc76-4f95-9c25-540e32625fd7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4261b854-fc76-4f95-9c25-540e32625fd7" }, { "id": "68c0645f-75cb-487d-8c06-e3979f0ab2a0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-68c0645f-75cb-487d-8c06-e3979f0ab2a0" }, { "id": "bbd05c9f-cec8-4093-af78-5b9f57ccf97b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bbd05c9f-cec8-4093-af78-5b9f57ccf97b" }, { "id": "059aa7a3-7a83-4089-b2a0-83babc9d7821", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-059aa7a3-7a83-4089-b2a0-83babc9d7821" }, { "id": "8bad1a88-0e9f-4efa-8798-e3a462e6f84d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8bad1a88-0e9f-4efa-8798-e3a462e6f84d" }, { "id": "bc282c2d-de51-4d48-9807-7ecf8557ed52", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-bc282c2d-de51-4d48-9807-7ecf8557ed52" }, { "id": "1fa202c7-632d-4e4b-9b9a-b7f38a4478ad", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series/cross?base=&base_type=&base_exchange=&base_mic_code="e="e_type="e_exchange="e_mic_code=&interval=1day&outputsize=&format=JSON&delimiter=;&prepost=false&start_date=&end_date=&adjust=true&dp=5&timezone=", "host": [ "{{baseUrl}}" ], "path": [ "time_series", "cross" ], "query": [ { "description": "(Required) Base currency symbol", "key": "base", "value": "" }, { "description": "Base instrument type according to the `/instrument_type` endpoint", "key": "base_type", "value": "" }, { "description": "Base exchange", "key": "base_exchange", "value": "" }, { "description": "Base MIC code", "key": "base_mic_code", "value": "" }, { "description": "(Required) Quote currency symbol", "key": "quote", "value": "" }, { "description": "Quote instrument type according to the `/instrument_type` endpoint", "key": "quote_type", "value": "" }, { "description": "Quote exchange", "key": "quote_exchange", "value": "" }, { "description": "Quote MIC code", "key": "quote_mic_code", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "" }, { "description": "Format of the response data", "key": "format", "value": "JSON" }, { "description": "Delimiter used in CSV file", "key": "delimiter", "value": ";" }, { "description": "Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume.", "key": "prepost", "value": "false" }, { "description": "Start date for the time series data", "key": "start_date", "value": "" }, { "description": "End date for the time series data", "key": "end_date", "value": "" }, { "description": "Specifies if there should be an adjustment", "key": "adjust", "value": "true" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.", "key": "dp", "value": "5" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here.
  • \n
\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1fa202c7-632d-4e4b-9b9a-b7f38a4478ad" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-34e8964c-943c-47ef-9b22-fa90e5912356" } ], "id": "a0e453e6-f827-4c18-82d8-c6a1cab51e30", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-a0e453e6-f827-4c18-82d8-c6a1cab51e30" }, { "name": "Time series", "id": "a7619aa0-0756-47e8-9b55-67bb38c70fd7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] }, "description": "The time series endpoint provides detailed historical data for a specified financial instrument. It returns two main components: metadata, which includes essential information about the instrument, and a time series dataset. The time series consists of chronological entries with Open, High, Low, and Close prices, and for applicable instruments, it also includes trading volume. This endpoint is ideal for retrieving comprehensive historical price data for analysis or visualization purposes." }, "response": [ { "id": "7595f298-3381-47ad-a2e2-30212f245014", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"close\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"open\": \"\",\n \"volume\": \"\"\n },\n {\n \"close\": \"\",\n \"datetime\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"open\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7595f298-3381-47ad-a2e2-30212f245014" }, { "id": "c9f9a310-edcb-44a9-a5e8-a4958febc66f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c9f9a310-edcb-44a9-a5e8-a4958febc66f" }, { "id": "a1c176bb-9bd0-46da-a549-380bc68be100", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a1c176bb-9bd0-46da-a549-380bc68be100" }, { "id": "cfe2cebd-ccb0-42b2-a11a-9a488f903d67", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-cfe2cebd-ccb0-42b2-a11a-9a488f903d67" }, { "id": "dc6210c9-243d-4ca2-992d-c173bb28f371", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dc6210c9-243d-4ca2-992d-c173bb28f371" }, { "id": "a3d7c83a-f2d7-4a35-af83-e81c90486fc0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a3d7c83a-f2d7-4a35-af83-e81c90486fc0" }, { "id": "4674ce2e-f11d-4dcb-8a6b-a4d19510be43", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4674ce2e-f11d-4dcb-8a6b-a4d19510be43" }, { "id": "080cd2fa-7900-49fc-a4ea-2ba9023e1d3b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/time_series?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits", "host": [ "{{baseUrl}}" ], "path": [ "time_series" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-080cd2fa-7900-49fc-a4ea-2ba9023e1d3b" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a7619aa0-0756-47e8-9b55-67bb38c70fd7" } ], "id": "12b72b4f-b7cb-4f90-af05-101c32186792", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-12b72b4f-b7cb-4f90-af05-101c32186792" }, { "name": "trange", "item": [ { "name": "True range", "id": "f73947c7-9aed-41fa-b94a-c17795b90caf", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The True Range (TRANGE) endpoint calculates the range of price movement for a specified period, providing a measure of market volatility. It returns data that includes the highest and lowest prices over the period, along with the closing price from the previous period. This information is useful for traders to assess market volatility and adjust their trading strategies accordingly." }, "response": [ { "id": "0a4ae2c9-629d-4859-88fe-54d71c06a96f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"trange\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"trange\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0a4ae2c9-629d-4859-88fe-54d71c06a96f" }, { "id": "200cc90f-bf90-4afc-8a95-10a13a1eba21", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-200cc90f-bf90-4afc-8a95-10a13a1eba21" }, { "id": "9e6c51cb-7b9a-457a-ba23-8143d7241c05", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9e6c51cb-7b9a-457a-ba23-8143d7241c05" }, { "id": "f99b6df6-915e-4a2d-b676-d6a16f1f9d88", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f99b6df6-915e-4a2d-b676-d6a16f1f9d88" }, { "id": "a76b3f06-56ee-422d-8962-bd3c11d92c7e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a76b3f06-56ee-422d-8962-bd3c11d92c7e" }, { "id": "1f2e4faf-3f0b-4ff5-a91f-85166dc3865d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f2e4faf-3f0b-4ff5-a91f-85166dc3865d" }, { "id": "540aeef1-b2d0-4e02-9945-b17372ca39ef", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-540aeef1-b2d0-4e02-9945-b17372ca39ef" }, { "id": "6d9f1e16-e9e2-4aa5-82f5-24ef98794120", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trange?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trange" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6d9f1e16-e9e2-4aa5-82f5-24ef98794120" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f73947c7-9aed-41fa-b94a-c17795b90caf" } ], "id": "63ba2e67-b0a5-4407-b935-553df79df8a5", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-63ba2e67-b0a5-4407-b935-553df79df8a5" }, { "name": "trima", "item": [ { "name": "Triangular moving average", "id": "d7132b16-0000-489d-a3ea-e0a4a015ef28", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Triangular Moving Average (TRIMA) endpoint calculates and returns the smoothed average price of a financial security over a specified period, with a focus on central data points. This endpoint provides a balanced view of price trends by applying a double smoothing process, making it useful for identifying underlying price patterns and reducing short-term fluctuations." }, "response": [ { "id": "49e209ae-78a5-474e-96b5-eda30a44bb76", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"trima\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"trima\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-49e209ae-78a5-474e-96b5-eda30a44bb76" }, { "id": "d6d10f3d-3556-4fe2-9125-b71265a71dde", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d6d10f3d-3556-4fe2-9125-b71265a71dde" }, { "id": "4189e403-dca1-4d1e-bbd7-da4f60c47324", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4189e403-dca1-4d1e-bbd7-da4f60c47324" }, { "id": "e7d86707-17b3-4d43-bfa8-f14fb5e819eb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e7d86707-17b3-4d43-bfa8-f14fb5e819eb" }, { "id": "2e969182-98bc-4ea3-a0b3-cd07bd903a07", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2e969182-98bc-4ea3-a0b3-cd07bd903a07" }, { "id": "e17d2f64-4c28-43fa-81d4-172a7b1a477b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e17d2f64-4c28-43fa-81d4-172a7b1a477b" }, { "id": "63057a6a-44f2-4823-9f2d-0533fe2ab5fd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-63057a6a-44f2-4823-9f2d-0533fe2ab5fd" }, { "id": "a8ca2cc0-c169-494e-bca4-7ad862dd2dfb", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/trima?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "trima" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a8ca2cc0-c169-494e-bca4-7ad862dd2dfb" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d7132b16-0000-489d-a3ea-e0a4a015ef28" } ], "id": "52e0a17f-23fd-47b2-9e28-cb8361fe24c8", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-52e0a17f-23fd-47b2-9e28-cb8361fe24c8" }, { "name": "tsf", "item": [ { "name": "Time series forecast", "id": "5ddc8afd-ff91-4b83-8585-7a062beb65a0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Time Series Forecast (TSF) endpoint provides projected future price levels using linear regression analysis. It returns data that helps users identify potential support and resistance levels, as well as trend direction in a financial market. This endpoint is useful for traders seeking to anticipate price movements and adjust their strategies accordingly." }, "response": [ { "id": "00fa0b32-90d6-4b36-a76f-89cd2e9f91f5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"tsf\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"tsf\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-00fa0b32-90d6-4b36-a76f-89cd2e9f91f5" }, { "id": "513a033e-b5d5-49b1-80de-620561feb1c9", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-513a033e-b5d5-49b1-80de-620561feb1c9" }, { "id": "4755547d-055e-46cd-9911-ca196d2d4ba2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4755547d-055e-46cd-9911-ca196d2d4ba2" }, { "id": "76f80ed5-e3ab-4d9f-b06f-5ea2324ea2d1", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-76f80ed5-e3ab-4d9f-b06f-5ea2324ea2d1" }, { "id": "fe26a7a7-e2e1-45de-ac72-9ff0866de844", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fe26a7a7-e2e1-45de-ac72-9ff0866de844" }, { "id": "a812ac0c-a5d7-46f0-a3c2-cdfd3c51a20b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a812ac0c-a5d7-46f0-a3c2-cdfd3c51a20b" }, { "id": "de6b4c83-584b-4b37-a201-eb2ee55aa035", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-de6b4c83-584b-4b37-a201-eb2ee55aa035" }, { "id": "4da0fc1d-cbd2-4f70-9b67-af0d64313020", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/tsf?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "tsf" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4da0fc1d-cbd2-4f70-9b67-af0d64313020" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ddc8afd-ff91-4b83-8585-7a062beb65a0" } ], "id": "e51a4fb4-d8ec-4842-8fab-b22046937113", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-e51a4fb4-d8ec-4842-8fab-b22046937113" }, { "name": "typprice", "item": [ { "name": "Typical price", "id": "7ded3939-29d4-40f3-ae66-7b3d27a073a5", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Typical Price (TYPPRICE) endpoint calculates and returns the average of a financial instrument's high, low, and close prices for a given period. This endpoint provides a simplified metric that reflects the central tendency of price movements, useful for traders and analysts who need a straightforward view of price trends." }, "response": [ { "id": "7ccd4361-480a-4bb5-90b7-6d86f6c1bca3", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"typprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"typprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ccd4361-480a-4bb5-90b7-6d86f6c1bca3" }, { "id": "ab0c24a6-84a8-4b0f-a922-31bb7eab0047", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab0c24a6-84a8-4b0f-a922-31bb7eab0047" }, { "id": "ab97e3c0-dba2-4a47-b43e-286eef55381d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab97e3c0-dba2-4a47-b43e-286eef55381d" }, { "id": "29296b94-865b-49b6-85f7-5f3cad4290c0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-29296b94-865b-49b6-85f7-5f3cad4290c0" }, { "id": "f4663729-d31d-483f-bd0b-5e0343d6db7f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-f4663729-d31d-483f-bd0b-5e0343d6db7f" }, { "id": "5ac6b64e-b62f-4448-902d-8f60d1238627", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5ac6b64e-b62f-4448-902d-8f60d1238627" }, { "id": "e1603d98-8685-41e9-987f-1560d643c726", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-e1603d98-8685-41e9-987f-1560d643c726" }, { "id": "15d43eed-578e-43de-b066-bc5679d435b4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/typprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "typprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-15d43eed-578e-43de-b066-bc5679d435b4" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ded3939-29d4-40f3-ae66-7b3d27a073a5" } ], "id": "edb491d2-089e-4873-b4ab-6df48a9ad6df", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-edb491d2-089e-4873-b4ab-6df48a9ad6df" }, { "name": "ultosc", "item": [ { "name": "Ultimate oscillator endpoint", "id": "39c9f4d9-af0b-4730-a542-4644c6a6b328", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Ultimate Oscillator endpoint (/ultosc) calculates a momentum oscillator that integrates short, intermediate, and long-term price movements to detect potential overbought or oversold conditions and possible trend reversals. It returns a time series of oscillator values, which can be used to assess market momentum and identify entry or exit points in trading strategies." }, "response": [ { "id": "0da9ae7d-6bc9-4b5e-9a7b-c78e9243d5df", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period_1\": \"\",\n \"time_period_2\": \"\",\n \"time_period_3\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"ultosc\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"ultosc\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0da9ae7d-6bc9-4b5e-9a7b-c78e9243d5df" }, { "id": "459569b0-a934-4b20-af6a-5a7d36d2351a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-459569b0-a934-4b20-af6a-5a7d36d2351a" }, { "id": "202ea5bf-7953-4426-b91c-b2bea3acde4e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-202ea5bf-7953-4426-b91c-b2bea3acde4e" }, { "id": "a151e304-c968-403e-8764-602c3afc1e75", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a151e304-c968-403e-8764-602c3afc1e75" }, { "id": "551b77fd-cda1-4bb6-87c1-a6ed113a21a5", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-551b77fd-cda1-4bb6-87c1-a6ed113a21a5" }, { "id": "d433fe90-5153-4156-97e8-4d3b364059d2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-d433fe90-5153-4156-97e8-4d3b364059d2" }, { "id": "5bf14eb8-e138-4f6b-aa69-79463e837e8e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5bf14eb8-e138-4f6b-aa69-79463e837e8e" }, { "id": "0e2b804b-2520-4cb2-b583-e8dbc4c9be92", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/ultosc?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period_1=7&time_period_2=14&time_period_3=28&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "ultosc" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The first time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_1", "value": "7" }, { "description": "The second time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_2", "value": "14" }, { "description": "The third time period used for calculation in the indicator. Takes values in the range from `1` to `800`", "key": "time_period_3", "value": "28" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-0e2b804b-2520-4cb2-b583-e8dbc4c9be92" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-39c9f4d9-af0b-4730-a542-4644c6a6b328" } ], "id": "b89ddce9-756d-49c9-b5ca-1c43a4496dab", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-b89ddce9-756d-49c9-b5ca-1c43a4496dab" }, { "name": "var", "item": [ { "name": "Variance", "id": "dba62788-0e97-4b46-8e75-df9a655717d8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Variance (VAR) endpoint calculates the statistical variance of a financial data series, providing a measure of how much the data points deviate from the average value. It returns a numerical value representing this dispersion, which can be used to assess the volatility of a security over a specified period. This information is crucial for traders and analysts who need to evaluate the risk associated with price fluctuations in the market." }, "response": [ { "id": "c6fb768a-69ad-4445-bb63-6d3da2f723b0", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"var\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"var\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c6fb768a-69ad-4445-bb63-6d3da2f723b0" }, { "id": "ce449d7b-8fae-4132-a38c-3dea37b73268", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ce449d7b-8fae-4132-a38c-3dea37b73268" }, { "id": "3d3fb2b7-cf8b-4aa7-b759-05138a0c0f32", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-3d3fb2b7-cf8b-4aa7-b759-05138a0c0f32" }, { "id": "fd05d6c7-b71e-4ffd-b713-1b03033970c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fd05d6c7-b71e-4ffd-b713-1b03033970c4" }, { "id": "c99f633d-d666-4a70-b4ce-c1e9358951ee", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c99f633d-d666-4a70-b4ce-c1e9358951ee" }, { "id": "c8504228-5c02-4511-b180-853e05d2863a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c8504228-5c02-4511-b180-853e05d2863a" }, { "id": "6a60c72c-03ec-4f09-b80f-d706bd65cfa7", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6a60c72c-03ec-4f09-b80f-d706bd65cfa7" }, { "id": "dd4e43e7-e9c3-4f41-9cee-0d98553c5493", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/var?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "var" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dd4e43e7-e9c3-4f41-9cee-0d98553c5493" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-dba62788-0e97-4b46-8e75-df9a655717d8" } ], "id": "1278ea1d-de2e-48c4-b892-e4ce4a25b58d", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-1278ea1d-de2e-48c4-b892-e4ce4a25b58d" }, { "name": "vwap", "item": [ { "name": "Volume weighted average price", "id": "7ba5f0ff-52a6-492a-8b1f-8b9cdb6a9fe7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Volume Weighted Average Price (VWAP) endpoint provides the VWAP value for a specified stock or asset over a given time period. This indicator calculates the average price at which a security has traded throughout the day, based on both volume and price. It is useful for identifying the true average price of an asset, helping traders to assess the current price relative to the day's average." }, "response": [ { "id": "2d326408-e544-4c71-8ae1-7cc81f2b1367", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"sd_time_period\": \"\",\n \"sd\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"vwap\": \"\",\n \"vwap_lower\": \"\",\n \"vwap_upper\": \"\"\n },\n {\n \"datetime\": \"\",\n \"vwap\": \"\",\n \"vwap_lower\": \"\",\n \"vwap_upper\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-2d326408-e544-4c71-8ae1-7cc81f2b1367" }, { "id": "25a8c667-3290-48d8-a392-47b299f9e3c4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-25a8c667-3290-48d8-a392-47b299f9e3c4" }, { "id": "a2360986-6901-4095-ab1e-94708106004e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a2360986-6901-4095-ab1e-94708106004e" }, { "id": "1f9f60b4-addb-42dd-9ae1-31a53876e3d8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-1f9f60b4-addb-42dd-9ae1-31a53876e3d8" }, { "id": "8413cfc4-5af6-40ad-a93a-8d025331e5d6", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8413cfc4-5af6-40ad-a93a-8d025331e5d6" }, { "id": "ed4f027c-7ad1-465c-a66c-b566fa54985e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ed4f027c-7ad1-465c-a66c-b566fa54985e" }, { "id": "c390a74c-e039-4fc7-9af9-550e691d582f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c390a74c-e039-4fc7-9af9-550e691d582f" }, { "id": "fa76c137-3601-4ccc-b5d6-f295aa7cce37", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/vwap?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&sd_time_period=0&sd=0&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "vwap" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "The time period for the standard deviation calculation. Must be greater than `0`. Recommended value is `9`.\nThis parameter is only used together with `sd`.", "key": "sd_time_period", "value": "0" }, { "description": "The standard deviation applied in the calculation. Must be greater than `0`. Recommended value is `2`.\nThis parameter is only used together with `sd_time_period`.", "key": "sd", "value": "0" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-fa76c137-3601-4ccc-b5d6-f295aa7cce37" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7ba5f0ff-52a6-492a-8b1f-8b9cdb6a9fe7" } ], "id": "c0c714e0-f9ad-4304-a099-7dd1a0494ca3", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-c0c714e0-f9ad-4304-a099-7dd1a0494ca3" }, { "name": "wclprice", "item": [ { "name": "Weighted close price", "id": "ea9d9cae-bf1f-4731-8c68-8f7f7145e6e4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Weighted Close Price (WCLPRICE) endpoint calculates a security's average price by giving additional weight to the closing price, using the formula: (High + Low + Close * 2) / 4." }, "response": [ { "id": "6af2ff84-e827-4ed4-a6e2-d4205f5e214b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"wclprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"wclprice\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6af2ff84-e827-4ed4-a6e2-d4205f5e214b" }, { "id": "adf8e307-c858-44f7-8d42-cd41133c976e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-adf8e307-c858-44f7-8d42-cd41133c976e" }, { "id": "4b75d5db-6f03-404d-90f7-0612b90070e4", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-4b75d5db-6f03-404d-90f7-0612b90070e4" }, { "id": "027fd00c-e52f-4ae8-a74d-31e6d74184b2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-027fd00c-e52f-4ae8-a74d-31e6d74184b2" }, { "id": "a4b5cb38-639b-408b-8d1f-a4469d7cef62", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-a4b5cb38-639b-408b-8d1f-a4469d7cef62" }, { "id": "6df13b46-1a94-414c-81c1-d251641d1a36", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-6df13b46-1a94-414c-81c1-d251641d1a36" }, { "id": "73691cc7-3611-4b28-bec9-d3e8f2e4168a", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-73691cc7-3611-4b28-bec9-d3e8f2e4168a" }, { "id": "c7a9198e-5289-474b-a7c2-ff021bcbfa95", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wclprice?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wclprice" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c7a9198e-5289-474b-a7c2-ff021bcbfa95" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ea9d9cae-bf1f-4731-8c68-8f7f7145e6e4" } ], "id": "96be2eaf-96ff-455e-ada9-713adb7b0224", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-96be2eaf-96ff-455e-ada9-713adb7b0224" }, { "name": "willr", "item": [ { "name": "Williams %R", "id": "65e6fe82-92cc-4c3d-8934-9796e5b73db4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Williams %R (WILLR) endpoint calculates the Williams Percent Range, a momentum indicator that evaluates a security's closing price relative to its high-low range over a specified period. This endpoint returns data that helps users identify potential overbought or oversold conditions and possible trend reversals in the market." }, "response": [ { "id": "aa4560f7-fecf-4b19-9311-82eec862ee0e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"willr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"willr\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-aa4560f7-fecf-4b19-9311-82eec862ee0e" }, { "id": "61da69db-22b7-4e80-941a-c06c895e53dd", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-61da69db-22b7-4e80-941a-c06c895e53dd" }, { "id": "8e323354-b9ff-41ca-a442-535701f26983", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-8e323354-b9ff-41ca-a442-535701f26983" }, { "id": "018ad24c-18ba-4e4e-a8dc-f84de81913e8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-018ad24c-18ba-4e4e-a8dc-f84de81913e8" }, { "id": "9356c4d1-e755-428f-9d98-ee4f6b226ba8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-9356c4d1-e755-428f-9d98-ee4f6b226ba8" }, { "id": "ffa7ef96-6677-42af-b73e-ae0de61a3d3d", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ffa7ef96-6677-42af-b73e-ae0de61a3d3d" }, { "id": "87d125e6-fe7f-485d-a3ff-be0ae800411b", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-87d125e6-fe7f-485d-a3ff-be0ae800411b" }, { "id": "b5148e89-3ca1-48e2-8b17-48bc31a6b866", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/willr?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&time_period=14&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "willr" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "14" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b5148e89-3ca1-48e2-8b17-48bc31a6b866" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-65e6fe82-92cc-4c3d-8934-9796e5b73db4" } ], "id": "2acf28c9-1319-4000-83df-491f59721a44", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-2acf28c9-1319-4000-83df-491f59721a44" }, { "name": "wma", "item": [ { "name": "Weighted moving average", "id": "5978493f-9e2f-44a4-bfa8-61dba0323f8c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] }, "description": "The Weighted Moving Average (WMA) endpoint calculates and returns the WMA values for a given security over a specified period. This endpoint provides a time series of weighted averages, where recent prices have a higher influence, allowing users to track and analyze short-term price trends effectively." }, "response": [ { "id": "ab86409e-4cc0-4e6b-a4f8-c08d40cd0474", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"meta\": {\n \"indicator\": {\n \"name\": \"\",\n \"series_type\": \"\",\n \"time_period\": \"\"\n },\n \"interval\": \"\",\n \"symbol\": \"\",\n \"type\": \"\",\n \"currency\": \"\",\n \"exchange_timezone\": \"\",\n \"exchange\": \"\",\n \"mic_code\": \"\"\n },\n \"status\": \"\",\n \"values\": [\n {\n \"datetime\": \"\",\n \"wma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n },\n {\n \"datetime\": \"\",\n \"wma\": \"\",\n \"open\": \"\",\n \"high\": \"\",\n \"low\": \"\",\n \"close\": \"\",\n \"volume\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-ab86409e-4cc0-4e6b-a4f8-c08d40cd0474" }, { "id": "453e0150-d8d1-44e9-ad41-2d6ab9a300e2", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-453e0150-d8d1-44e9-ad41-2d6ab9a300e2" }, { "id": "c425f8c2-1cf3-4aef-a3bd-8a201592176e", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-c425f8c2-1cf3-4aef-a3bd-8a201592176e" }, { "id": "7cc8f7f8-281d-451e-8a38-ab598c2ebf68", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-7cc8f7f8-281d-451e-8a38-ab598c2ebf68" }, { "id": "b9bac2f0-c70e-49fd-a59c-27ec6452e0a8", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-b9bac2f0-c70e-49fd-a59c-27ec6452e0a8" }, { "id": "21dffb94-23d8-4c77-85fc-f33869839c55", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Request-URI Too Long", "code": 414, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-21dffb94-23d8-4c77-85fc-f33869839c55" }, { "id": "11a0aa3a-34b5-4b5a-b05b-5f0504bbdc26", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-11a0aa3a-34b5-4b5a-b05b-5f0504bbdc26" }, { "id": "115b6e63-c509-4e9b-ad2a-f688bdd08f6f", "name": "New Response", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/wma?symbol=&isin=&figi=&cusip=&interval=1day&outputsize=30&exchange=&mic_code=&country=&type=Limited Partnership&timezone=Exchange&start_date=&end_date=&date=&order=desc&prepost=false&format=JSON&delimiter=;&dp=-1&previous_close=false&adjust=splits&series_type=open&time_period=9&include_ohlc=false", "host": [ "{{baseUrl}}" ], "path": [ "wma" ], "query": [ { "description": "Symbol ticker of the instrument. E.g. `AAPL`, `EUR/USD`, `ETH/BTC`, ...", "key": "symbol", "value": "" }, { "description": "Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section", "key": "isin", "value": "" }, { "description": "The FIGI of an instrument for which data is requested. This parameter is available on the Ultra plan (individual) and the Enterprise plan (business) and above.", "key": "figi", "value": "" }, { "description": "The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section", "key": "cusip", "value": "" }, { "description": "(Required) Interval between two consecutive points in time series", "key": "interval", "value": "1day" }, { "description": "Number of data points to retrieve. Supports values in the range from `1` to `5000`. Default `30` when no date parameters are set, otherwise set to maximum", "key": "outputsize", "value": "30" }, { "description": "Exchange where instrument is traded", "key": "exchange", "value": "" }, { "description": "Market Identifier Code (MIC) under ISO 10383 standard", "key": "mic_code", "value": "" }, { "description": "The country where the instrument is traded, e.g., `United States` or `US`", "key": "country", "value": "" }, { "description": "The asset class to which the instrument belongs", "key": "type", "value": "Limited Partnership" }, { "description": "Timezone at which output datetime will be displayed. Supports:\n
    \n
  • 1. Exchange for local exchange time
  • \n
  • 2. UTC for datetime at universal UTC standard
  • \n
  • 3. Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. Full list of timezones can be found here
  • \n
\n

Interval Limitation: The timezone parameter is only applicable for intraday intervals (less than 1 day). For intervals of 1day, 1week, or 1month, the timezone parameter is ignored, and data is strictly returned in the Exchange local time.

\nTake note that the IANA Timezone name is case-sensitive", "key": "timezone", "value": "Exchange" }, { "description": "Can be used separately and together with `end_date`. Format `2006-01-02` or `2006-01-02T15:04:05`\n\nDefault location:\n
    \n
  • Forex and Cryptocurrencies - UTC
  • \n
  • Stocks - where exchange is located (e.g. for AAPL it will be America/New_York)
  • \n
\nBoth parameters take into account if timezone parameter is provided.
\nIf timezone is given then, start_date and end_date will be used in the specified location\n\nExamples:\n
    \n
  • 1. &symbol=AAPL&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 New York time up to current date
  • \n
  • 2. &symbol=EUR/USD&timezone=Asia/Singapore&start_date=2019-08-09T15:50:00&\u2026
    \nReturns all records starting from 2019-08-09T15:50:00 Singapore time up to current date
  • \n
  • 3. &symbol=ETH/BTC&timezone=Europe/Zurich&start_date=2019-08-09T15:50:00&end_date=2019-08-09T15:55:00&...
    \nReturns all records starting from 2019-08-09T15:50:00 Zurich time up to 2019-08-09T15:55:00
  • \n
", "key": "start_date", "value": "" }, { "description": "The ending date and time for data selection, see `start_date` description for details.", "key": "end_date", "value": "" }, { "description": "Specifies the exact date to get the data for. Could be the exact date, e.g. `2021-10-27`, or in human language `today` or `yesterday`", "key": "date", "value": "" }, { "description": "Sorting order of the output", "key": "order", "value": "desc" }, { "description": "Returns quotes that include pre-market and post-market data. Only for the `Pro` plan (individual) and `Venture` plan (business) and above.\nAvailable at the `1min`, `5min`, `15min`, and `30min` intervals for US equities.\nOpen, high, low, close values are supplied without volume", "key": "prepost", "value": "false" }, { "description": "The format of the response data", "key": "format", "value": "JSON" }, { "description": "The separator used in the CSV response data", "key": "delimiter", "value": ";" }, { "description": "Specifies the number of decimal places for floating values.\nShould be in range [0, 11] inclusive.\nBy default, the number of decimal places is automatically determined based on the values provided", "key": "dp", "value": "-1" }, { "description": "A boolean parameter to include the previous closing price in the time_series data. If true, adds previous bar close price value to the current object", "key": "previous_close", "value": "false" }, { "description": "Adjusting mode for prices", "key": "adjust", "value": "splits" }, { "description": "Price type on which technical indicator is calculated", "key": "series_type", "value": "open" }, { "description": "Number of periods to average over. Takes values in the range from `1` to `800`", "key": "time_period", "value": "9" }, { "description": "Specify if OHLC values should be added in the output", "key": "include_ohlc", "value": "false" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"code\": \"\",\n \"message\": \"\",\n \"status\": \"\"\n}", "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-115b6e63-c509-4e9b-ad2a-f688bdd08f6f" } ], "createdAt": "2026-07-28T03:21:11.000Z", "updatedAt": "2026-07-28T03:21:11.000Z", "uid": "35240-5978493f-9e2f-44a4-bfa8-61dba0323f8c" } ], "id": "48eba7da-c444-430f-849c-125e194bf5e2", "createdAt": "2026-07-28T03:21:10.000Z", "updatedAt": "2026-07-28T03:21:10.000Z", "uid": "35240-48eba7da-c444-430f-849c-125e194bf5e2" } ], "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "Authorization", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://api.twelvedata.com/" } ] }