Finance News API
Scrape Finance News data with one API call. Returns recent news articles for one financial instrument as a unified NewsArticleList: title, absolute publish time (UTC), publisher, source domain, article URL, and the widest available thumbnail. Pass the instrument in `keyword` as a bare ticker (`AAPL`) or in the `TICKER:EXCHANGE` form used by /v1/finance/quote (`AAPL:NASDAQ`) - the exchange suffix is stripped for you. Rows use the same canonical shape as /v1/google_news/search, so finance news and news-search results join on one row type. `published_at` is always an absolute second-precision ISO-8601 UTC instant, never a localized "2 hours ago" string. Prices and instrument data are delayed; see the platform guide for per-exchange delays.
Last updated September 2026Maintained by the SocialCrawl team
Returns recent news for one instrument: headline, absolute UTC publish time, publisher, domain, article URL, and the largest thumbnail. Same row shape as google_news/search, so the two merge cleanly.
Use it to find why a price moved. Pass a bare ticker ('AAPL') or quote's 'AAPL:NASDAQ' form; the suffix is ignored. This platform is delayed.
Searching 64 platforms in parallel
What can you do with the News API?
The News endpoint gives you structured Finance data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/finance/news?keyword=AAPL"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/finance/news",
params={
'keyword': 'AAPL',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/finance/news?keyword=AAPL",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| keyword | Yes | Instrument ticker. A bare symbol ('AAPL', '005930.KS') or the 'TICKER:EXCHANGE' form from ticker-search ('AAPL:NASDAQ'); the exchange suffix is ignored. |
| limit | No | Maximum articles to return, 1 to 50. Defaults to the upstream batch size. |
How does the Finance News API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 64 platforms covering 10B+ monthly active users.
One schema, every platform
Query 64 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape Finance News data?
Get your API key and start pulling Finance data in under 60 seconds.
