Endpoint Playground
Test Crawlora's Google Finance Ticker API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/google/finance/ticker/<ticker>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| ticker (path) | string | Yes | Ticker symbol to fetch data for example:AAPL:NASDAQ, BTC-USD | |
| window | string | No | Time window for the ticker data (default: 1d), options: 1d, 5d, 1m, 6m, 1y, 5y, max |
{
"code": 200,
"data": [
{
"price": 239.5,
"time": "2024-12-27T09:03:00Z",
"volume": 131032
}
],
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Fetches chart ticker data from Google Finance based on a provided ticker and window period.
{
"code": 200,
"data": [
{
"price": 239.5,
"time": "2024-12-27T09:03:00Z",
"volume": 131032
}
],
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/google/finance/ticker/<ticker>" \
-H "x-api-key: $CRAWLORA_API_KEY"