Endpoint Playground
Test Crawlora's Google Finance News 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/news/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| quote (path) | string | Yes | Quote identifier such as AAPL:NASDAQ | |
| limit | integer | No | Article limit |
{
"code": 200,
"msg": "OK",
"data": [
{
"title": "Apple Stock Poised for 21% Surge",
"source": "24/7 Wall St.",
"url": "https://247wallst.com/investing/2026/04/28/apple-stock-poised-for-21-surge/",
"published_unix": 1777398061,
"published_at": "2026-04-28T17:41:01Z",
"thumbnail_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSVjUAJrZYWBJA2Q7yragfnu71T..."
}
]
}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.
Returns normalized news articles for a quote.
{
"code": 200,
"msg": "OK",
"data": [
{
"title": "Apple Stock Poised for 21% Surge",
"source": "24/7 Wall St.",
"url": "https://247wallst.com/investing/2026/04/28/apple-stock-poised-for-21-surge/",
"published_unix": 1777398061,
"published_at": "2026-04-28T17:41:01Z",
"thumbnail_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSVjUAJrZYWBJA2Q7yragfnu71T..."
}
]
}curl "https://api.crawlora.net/api/v1/google/finance/news/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"