From 9d6517d79c37c1a61affd3e55dd60e6a55297bc6 Mon Sep 17 00:00:00 2001 From: Idalith Bustos Date: Wed, 12 Nov 2025 11:21:49 -0800 Subject: [PATCH 1/2] Updates --- .../src/pages/en/token-api/endpoint-pricing.mdx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/website/src/pages/en/token-api/endpoint-pricing.mdx b/website/src/pages/en/token-api/endpoint-pricing.mdx index 1354b7e2bc10..2966bcb212ae 100644 --- a/website/src/pages/en/token-api/endpoint-pricing.mdx +++ b/website/src/pages/en/token-api/endpoint-pricing.mdx @@ -9,10 +9,21 @@ title: Endpoint Pricing | $25 of total usage across available endpoints | $50 of total usage across available endpoints | $200 of total usage across available endpoints | Custom plan across available endpoints | | Query parameters: 10 items returned, batch size 1 | Query parameters: 100 items returned, batch size 25 | Query parameters: 500 items returned, batch size 50 | Custom items returned and batch size | | Rate limit: 200/min | Rate limit: 500/min | Rate limit: 1000/min | Custom rate limit | -| Time parameters: 1d, 1w intervals | Time parameters: 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | -| Historical price data: 6 months availability | Historical price data: 2 years availability | Historical price data: Full availability | Historical price data: Full availability | +| Time parameters: 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | Time parameters: 1h, 4h, 1d, 1w intervals | +| Time interval window: 168 bars | Time interval window: 2160 bars | Time interval window: Full | Time interval window: Full | +| Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability | | No additional queries allowed outside of free tier | Pay-as-you-go once included usage is exceeded | Pay-as-you-go once included usage is exceeded | SLAs + Engineering Support | +## Time Intervals and Parameters (\*): + +1. The **time interval window** is calculated as: **`bars × interval`**. + - **Example**: The Free plan provides 168 bars with a 4h interval: 168 × 4h = 28 days of data. +2. **Full historical data** is available on all plans. +3. **Pagination** is still required to fetch all results. Users won't receive more data than the plan's total bar limit. + - **Example**: The Free plan allows 168 bars and a 10-result limit per query, so you'll need 17 queries to retrieve all pages. +4. You can use **`start_time`** and **`end_time`** to move your time window across history. + - **Example**: `start_time=2025-01-01`, `end_time=2025-01-28`, and `interval=4h` (Free plan) will return 28 days of data for that range. + ## Token Endpoints - $15/mil queries Query token transfers, balances, and metadata across EVM and SVM blockchains From 051326be430df7d77fa17e5ba48f39c1f7a62434 Mon Sep 17 00:00:00 2001 From: Idalith Bustos Date: Wed, 12 Nov 2025 13:28:48 -0800 Subject: [PATCH 2/2] fixing lint --- website/src/pages/en/token-api/endpoint-pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/en/token-api/endpoint-pricing.mdx b/website/src/pages/en/token-api/endpoint-pricing.mdx index 2966bcb212ae..f2ab11808583 100644 --- a/website/src/pages/en/token-api/endpoint-pricing.mdx +++ b/website/src/pages/en/token-api/endpoint-pricing.mdx @@ -14,7 +14,7 @@ title: Endpoint Pricing | Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability | Historical price data: Full availability | | No additional queries allowed outside of free tier | Pay-as-you-go once included usage is exceeded | Pay-as-you-go once included usage is exceeded | SLAs + Engineering Support | -## Time Intervals and Parameters (\*): +## Time Intervals and Parameters (\*) 1. The **time interval window** is calculated as: **`bars × interval`**. - **Example**: The Free plan provides 168 bars with a 4h interval: 168 × 4h = 28 days of data.