REST API
온디맨드 뉴스 데이터를 위한 간단한 HTTP 요청. 웹 애플리케이션 및 배치 처리에 완벽합니다.
// POST requestPOST https://api.finlight.me/v2/articles실시간 금융 뉴스, AI 기반 감성 분석, 엔터프라이즈급 안정성으로 애플리케이션을 강화하세요.
선호하는 통합 방식을 통해 동일한 풍부한 금융 데이터에 액세스하세요
온디맨드 뉴스 데이터를 위한 간단한 HTTP 요청. 웹 애플리케이션 및 배치 처리에 완벽합니다.
// POST requestPOST https://api.finlight.me/v2/articles실시간 트레이딩 애플리케이션을 위한 실시간 데이터 스트림. 시장에 중요한 결정을 위한 초 단위 미만의 지연 시간.
wss://wss.finlight.mewss://wss.finlight.me/raw엔드포인트로 푸시되는 이벤트 기반 알림. 자동화된 트레이딩 및 알림에 완벽합니다.
// Auto-pushPOST /your-endpoint실제 시나리오를 통해 금융 뉴스 API를 직접 체험해 보세요. 다양한 사용 사례를 클릭하여 풍부한 데이터 구조, 감성 분석 및 기업 추출 기능을 탐색해 보세요.
{
"status": "ok",
"page": 1,
"pageSize": 3,
"articles": [
{
"link": "https://www.example-financial-news.com/technology/nvidia-q3-2024",
"source": "www.example-financial-news.com",
"title": "Nvidia Reports Record Q3 Revenue of $60.9B, Beats Estimates",
"summary": "Nvidia's data center revenue surged 112% year-over-year to $30.8 billion, driven by strong demand for AI chips from cloud providers and enterprises.",
"publishDate": "2024-11-20T16:30:00Z",
"language": "en",
"categories": [
"technology",
"business"
],
"countries": [
"US"
],
"sentiment": "positive",
"confidence": 0.92,
"images": [
"https://www.example-financial-news.com/images/nvidia-earnings-chart.jpg",
"https://www.example-financial-news.com/images/datacenter-revenue.jpg"
],
"companies": [
{
"companyId": 12345,
"confidence": "0.9500000000000000",
"country": "United States",
"exchange": "XNAS",
"industry": "Semiconductors",
"name": "NVIDIA Corporation",
"sector": "Technology",
"ticker": "NVDA",
"primaryListing": {
"ticker": "NVDA",
"exchangeCode": "XNAS",
"exchangeCountry": "United States"
},
"isins": [
"US67066G1040"
],
"otherListings": [
{
"ticker": "NVD.DE",
"exchangeCode": "XETRA",
"exchangeCountry": "Germany"
}
]
}
]
},
{
"link": "https://www.example-business-daily.com/nvidia-guidance",
"source": "www.example-business-daily.com",
"title": "Nvidia Provides Strong Q4 Guidance Despite China Restrictions",
"summary": "Company forecasts Q4 revenue of $37.5 billion, above analyst expectations of $37.1 billion, despite ongoing export restrictions to China.",
"publishDate": "2024-11-20T17:15:00Z",
"language": "en",
"categories": [
"technology",
"business"
],
"countries": [
"US",
"CN"
],
"sentiment": "positive",
"confidence": 0.88,
"images": [
"https://www.example-business-daily.com/images/nvidia-guidance.jpg"
],
"companies": [
{
"companyId": 12345,
"confidence": "0.9200000000000000",
"country": "United States",
"exchange": "XNAS",
"industry": "Semiconductors",
"name": "NVIDIA Corporation",
"sector": "Technology",
"ticker": "NVDA",
"primaryListing": {
"ticker": "NVDA",
"exchangeCode": "XNAS",
"exchangeCountry": "United States"
},
"isins": [
"US67066G1040"
],
"otherListings": [
{
"ticker": "NVD.DE",
"exchangeCode": "XETRA",
"exchangeCountry": "Germany"
}
]
}
]
}
]
}저희 쿼리 엔진은 불리언 논리, 필드 수준 필터링 및 복잡한 표현식을 지원합니다. 정밀한 정확도로 필요한 뉴스만 정확히 찾아보세요.
따옴표를 사용하여 특정 단어나 정확한 구문이 포함된 기사를 찾으세요
regulation OR "artificial intelligence"+를 사용하여 용어를 필수로 지정하고 -를 사용하여 결과에서 제외하세요
"stock market" -cryptoticker:, exchange:, source:, content: 같은 특정 필드를 대상으로 지정하세요
ticker:AAPL exchange:XNASAND, OR, NOT으로 조건을 결합하여 정밀하게 제어하세요
("Tesla" OR ticker:TSLA) AND NOT bitcoin괄호를 사용하여 복잡한 쿼리의 평가 순서를 제어하세요
("Elon Musk") AND (twitter OR tesla)모든 연산자를 결합하여 정교한 필터링을 수행하세요
ticker:TSLA -crypto AND (source:www.bloomberg.com OR source:www.reuters.com)TypeScript와 Python용 SDK로 몇 분 만에 시작하거나, cURL로 REST API를 직접 사용하세요.
import { FinlightApi } from "finlight-client";
const api = new FinlightApi({
apiKey: 'YOUR_API_KEY'
});
api.articles
.fetchArticles({
query: 'ticker:NVDA earnings -crypto',
from: '2024-01-01',
includeEntities: true,
pageSize: 20
})
.then((response) => {
console.log(`Found ${response.articles.length} articles`);
response.articles.forEach(article => {
console.log(article.title);
console.log(`Sentiment: ${article.sentiment}`);
console.log(`Companies: ${article.companies.map(c => c.ticker).join(', ')}`);
});
})
.catch((error) => console.error(error));npm install finlight-client로 몇 분 만에 복잡한 쿼리를 작성할 수 있습니다.
고급 필터링을 위한 완벽한 쿼리 문법 가이드, 필드 참조 및 인터랙티브 예제.
JavaScript, Python 및 REST API를 위한 완전한 쿼리 빌더 지원이 포함된 공식 SDK.
인기 있는 자동화 플랫폼을 사용하여 finlight를 기존 워크플로우에 통합하세요.
MCP를 통해 Claude와 ChatGPT 같은 AI 어시스턴트에게 금융 뉴스에 직접 접근 권한을 부여하세요
모델 컨텍스트 프로토콜을 사용하여 Claude, ChatGPT 및 기타 AI 어시스턴트를 finlight의 실시간 금융 뉴스에 연결하세요
코드 한 줄 작성하지 않고 복잡한 자동화 워크플로우를 구축하세요
시장 이벤트에 즉시 반응하는 웹훅 기반 트리거를 설정하세요
일반적인 금융 뉴스 워크플로우를 위한 기성 템플릿으로 시작하세요
finlight를 Slack, Discord, 이메일, 데이터베이스 등과 연결하세요
AAPL에 대한 긍정적인 감성 기사 발행
지정된 필터 조건이 충족되면 트리거됨
웹훅을 처리하고 알림 메시지 형식을 지정함
Slack, Discord 또는 SMS로 알림을 전송함
고빈도 거래부터 컴플라이언스 모니터링까지, finlight는 신뢰할 수 있는 실시간 데이터로 다양한 금융 애플리케이션을 지원합니다.
실시간 뉴스 신호와 감성 데이터로 밀리초 단위로 거래를 실행하세요.
// HFT with advanced filtering
const client = new FinlightApi({
apiKey: 'your-api-key'
});
client.websocket.connect(
{
query: 'ticker:SPY AND "breaking" -rumor',
language: 'en',
includeEntities: true
},
(article) => {
if (article.sentiment === 'positive') {
tradingBot.executeOrder({
symbol: 'SPY',
action: 'BUY'
});
}
}
);포트폴리오 노출을 모니터링하고 위험이 현실화되기 전에 식별하세요.
// Risk monitoring setup
// Webhooks configured via Dashboard Wizard
// Visit: https://docs.finlight.me/v2/webhooks/
const articles = await api.articles.fetchArticles({
query: '("SEC" OR "regulatory") AND exchange:XNAS',
language: 'en',
pageSize: 20,
includeEntities: true
});
// Process regulatory alerts
articles.forEach(article => {
riskAnalyzer.evaluateRisk(article);
});투자에 영향을 미치는 국제 시장과 지정학적 사건을 추적하세요.
// Global market surveillance
(async () => {
const articles = await api.articles.fetchArticles({
query:
'"market volatility" AND ' +
'(exchange:XJPX OR ' +
' exchange:XLON)',
language: 'en',
pageSize: 50,
includeEntities: true
});
console.log(`Found ${articles.length} global articles`);
})();과거 및 실시간 데이터로 종합적인 리서치 플랫폼을 구축하세요.
// Research with source control
(async () => {
const research = await api.articles.fetchArticles({
query: '(ticker:AAPL OR ticker:MSFT) AND "earnings"',
language: 'en',
pageSize: 25,
includeCompanies: true
});
research.forEach(article => {
console.log(`${article.publishDate}: ${article.title}`);
});
})();고급 금융 뉴스 API, 쿼리 기능, 통합 방법 등에 대한 답변을 얻으세요.
finlight는 ticker:, exchange:, source:, content:와 같은 연산자를 사용한 정교한 필드 수준 필터링을 제공합니다. 불리언 논리(AND, OR, NOT), 포함/제외 연산자(+, -), 따옴표를 사용한 정확한 구문 일치, 복잡한 괄호 그룹화를 사용할 수 있습니다. 이를 통해 금융 뉴스 검색에서 수술적 정밀도를 달성할 수 있습니다.
개발자 중심의 지원 팀이 통합 및 확장을 도와드립니다.