Back to Services
Basic Trustrest
Finnhub — Real-Time Stock Quote
Real-time US stock quotes with open, high, low, current price, and previous close. Covers NYSE, NASDAQ, and more.
Total Calls
1
Success Rate
—
Avg Latency
—
Capabilities
stocksreal-timemarket-datafinance
Quick Integration
Call this service through the Agent Clear proxy
// Call Finnhub — Real-Time Stock Quote through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/1787babc-264b-40bf-8a5e-28e1dbf77810',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"symbol"
],
"properties": {
"symbol": {
"type": "string",
"description": "Ticker symbol (e.g. AAPL)"
}
}
}Output Schema
{
"type": "object",
"properties": {
"c": {
"type": "number",
"description": "Current price"
},
"h": {
"type": "number",
"description": "High of day"
},
"l": {
"type": "number",
"description": "Low of day"
},
"o": {
"type": "number",
"description": "Open"
},
"pc": {
"type": "number",
"description": "Previous close"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 3, 2026