Google Finance Ticker Search API
API 한 번의 호출로 Google Finance Ticker Search 데이터를 받아 가세요. Searches Google Finance for financial instruments matching a name and returns a unified QuoteList — each row carries the `id` (e.g. 'AAPL:NASDAQ', '.INX:INDEXSP', 'EUR-USD') to feed into /v1/google_finance/quote, plus the ticker, display name, exchange, live price, and `type` discriminator. Spans stocks, ETFs, indices, and forex/crypto pairs (asset pairs populate `quote.pair`, with a null `ticker`). Filter by instrument class with `category`. Sourced live from DataForSEO's Google Finance SERP (~2-3s).
2026년 7월 업데이트SocialCrawl 팀이 직접 관리해요
46개 플랫폼을 한 번에 살펴봐요
Ticker Search API로 무엇을 할 수 있을까요
Ticker Search 엔드포인트가 통합 스키마와 계산 필드를 담은 Google Finance 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/google_finance/ticker-search?keyword=Apple"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/google_finance/ticker-search",
params={
'keyword': 'Apple',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/google_finance/ticker-search?keyword=Apple",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| keyword | 예 | Company / instrument name to search for (e.g. 'Apple', 'Euro', 'Bitcoin'). |
| category | 아니오 | Restrict to one instrument class: all (default), stock, index, mutual_fund, currency, or futures. A class with no matches returns an empty list. (all | stock | index | mutual_fund | currency | futures) |
| language | 아니오 | Language as a DFS name ('English') or 2-letter code ('en'). Defaults to English. |
| location | 아니오 | Location as a DFS name ('United States') or numeric code ('2840'). Defaults to the US. |
Google Finance Ticker Search API는 무엇을 돌려주나요
모든 응답은 하나의 통합 스키마를 따라요. 크레딧을 쓰기 전에 어떤 필드가 돌아오는지, 실제 응답 본문 그대로 확인해 보세요.
응답 예시 보기
{
"success": true,
"platform": "google_finance",
"endpoint": "/v1/google_finance/ticker-search",
"data": {
"items": [
{
"quote": {
"id": "AAPL:NASDAQ",
"ticker": "AAPL",
"exchange": "NASDAQ",
"name": "Apple Inc",
"type": "stock",
"url": "https://google.com/finance/quote/AAPL:NASDAQ?hl=en&gl=us",
"currency": "USD",
"pair": null,
"price": {
"current": 337.2813,
"previous_close": 333.02,
"delta": 4.261322,
"percentage_delta": 1.2795994,
"trend": "up",
"day_low": null,
"day_high": null,
"year_low": null,
"year_high": null,
"timestamp": "2026-07-27 14:38:40 +00:00"
},
"metrics": null
}
},
{
"quote": {
"id": "APLE:NYSE",
"ticker": "APLE",
"exchange": "NYSE",
"name": "Apple Hospitality REIT Inc",
"type": "stock",
"url": "https://google.com/finance/quote/APLE:NYSE?hl=en&gl=us",
"currency": "USD",
"pair": null,
"price": {
"current": 16.88,
"previous_close": 16.77,
"delta": 0.1099987,
"percentage_delta": 0.65592545,
"trend": "up",
"day_low": null,
"day_high": null,
"year_low": null,
"year_high": null,
"timestamp": "2026-07-27 14:38:47 +00:00"
},
"metrics": null
}
}
],
"total": 5,
"dropped": 0
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 5
}
}통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.
Google Finance Ticker Search API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 46개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 46개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.
코드 한 줄 쓰기 전에, 데이터부터
Visual Data Explorer — URL만 붙여넣으면 결과 카드, 정형화된 테이블, CSV 내보내기 기능을 제공합니다.
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"
}
}
}궁금한 점이 있으신가요? 답변해 드립니다
SocialCrawl의 API, 요금제, 기능에 대한 자주 묻는 질문을 확인하세요.
문의하기회사 이름으로 티커 심볼은 어떻게 찾나요?
티커 검색 엔드포인트는 무엇을 주나요?
상품 종류로 검색을 필터링할 수 있나요?
검색 결과를 전체 시세로 어떻게 바꾸나요?
티커 검색 요금은 얼마인가요?
AI에게 SocialCrawl을 물어보세요
Google Finance Ticker Search 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 Google Finance 데이터를 받아 가세요.
