Endpoint Playground
Test Crawlora's Google Finance Analyst Articles 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/analyst-articles/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| quote (path) | string | Yes | Quote identifier such as AAPL:NASDAQ |
{
"code": 200,
"msg": "OK",
"data": [
{
"title": "Google, Meta, Microsoft, Amazon, Apple earnings: What to expect",
"source": "Yahoo Finance",
"url": "https://finance.yahoo.com/video/google-meta-microsoft-amazon-apple-earnings-what...",
"published_unix": 1777302768,
"published_at": "2026-04-27T15:12:48Z",
"thumbnail_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQCfvp1KiKPZMcMBMAgl6t1Y8uR..."
}
]
}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 analyst article results for a quote.
{
"code": 200,
"msg": "OK",
"data": [
{
"title": "Google, Meta, Microsoft, Amazon, Apple earnings: What to expect",
"source": "Yahoo Finance",
"url": "https://finance.yahoo.com/video/google-meta-microsoft-amazon-apple-earnings-what...",
"published_unix": 1777302768,
"published_at": "2026-04-27T15:12:48Z",
"thumbnail_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQCfvp1KiKPZMcMBMAgl6t1Y8uR..."
}
]
}curl "https://api.crawlora.net/api/v1/google/finance/analyst-articles/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"