Skip to content
Guavy Logo GUAVY
GET
·
/api/v2/crypto/technical-analysis/get-price-history

Get Price History

Retrieve daily historical price data for a given cryptocurrency symbol. Returns an array of daily price quotes with price, volume, and timestamp in milliseconds.

Attributes

symbol
string
Required
The symbol of the instrument to fetch price history for (e.g. BTC, ETH).

API Request

Example Request with cURL

curl \
--request GET \
--url     'https://guavy.com/api/v2/crypto/technical-analysis/get-price-history/<symbol>' \
--header 'Authorization: Bearer YOUR-GUAVY-ACCESS-TOKEN' \
--header 'Content-Type: application/json'

This request format works across all modern HTTP clients, including Python requests, JavaScript fetch, and other programming language libraries.

Example Response for /api/v2/crypto/technical-analysis/get-price-history/BTC

{
  "price_history": [
    {
      "date": "Jul 01, 2024",
      "price": 62586.81651658719,
      "timestamp": 1719792600000,
      "volume": 17376034454.93
    },
    {
      "date": "Jul 02, 2024",
      "price": 62831.28905136107,
      "timestamp": 1719879000000,
      "volume": 25317598509.7
    },
    {
      "date": "Jul 03, 2024",
      "price": 62103.03320591166,
      "timestamp": 1719965400000,
      "volume": 20098182715.87
    }
  ]
}

Response Object

price_history
array[object]
Array of daily price quote objects.
price
float
The closing price for the day.
volume
float
The 24-hour trading volume.
timestamp
integer
Unix timestamp in milliseconds.
date
string
Human-readable date (e.g. "Mar 25, 2024").

Token Costs

Each API call consumes tokens from your monthly budget. Endpoints that return richer or deeper data cost more tokens. Historical endpoints scale with the amount of data requested.

Endpoint Token Cost
GET /api/v2/crypto/instruments/list-symbols 1
GET /api/v2/crypto/newsroom/get-recent-briefs/:symbol 3 – 8 (scales with limit)
GET /api/v2/crypto/newsroom/search-briefs/:symbol 3 – 8 (scales with limit)
GET /api/v2/crypto/newsroom/get-article/:id 3
GET /api/v2/crypto/sentiment/get-sentiment-history/:symbol 3 – 12 (scales with limit)
GET /api/v2/crypto/technical-analysis/get-price-history/:symbol 5
GET /api/v2/crypto/technical-analysis/get-indicators/:symbol 8

Account Limits

Each plan includes a monthly token budget: 3,000 for Sandbox, 250,000 for Quant, and 1,000,000 for Pro. Your monthly plan budget resets to the full amount on the 1st of each month — unused base tokens don't carry over. You can top up at any time with a one-time token pack; pack tokens never expire and any unused pack balance rolls forward. If you exceed your budget, the API returns a 403 until the next reset or until you purchase more tokens.

Connection Limits

The Guavy API has a limit of 10 simultaneous connections and a 120-second timeout per request. We recommend caching responses that don't change frequently to reduce token consumption and improve performance.

Was this helpful?
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}

© 2026 Guavy Inc. All rights reserved.