-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtier3-authenticated.json
More file actions
52 lines (52 loc) · 1.81 KB
/
tier3-authenticated.json
File metadata and controls
52 lines (52 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"version": "1.0",
"origin": "api.example.com",
"payout_address": "0x0000000000000000000000000000000000000000",
"display_name": "Example API",
"description": "Financial data API providing real-time stock quotes, company fundamentals, and market news.",
"extensions": {
"air": {
"verified_provider": true
}
},
"identity": {
"did": "did:web:api.example.com",
"public_key": "dGhpcyBpcyBhIHBsYWNlaG9sZGVyIHB1YmxpYyBrZXk"
},
"intents": [
{
"name": "get_stock_quote",
"description": "Get real-time stock price and trading data for a given ticker symbol. Returns current price, day change, volume, market cap, and 52-week range.",
"extensions": {
"air": {
"latency_sla_ms": 200
}
},
"parameters": {
"symbol": { "type": "string", "required": true, "description": "Ticker symbol (e.g., AAPL, GOOGL)" }
}
},
{
"name": "get_company_fundamentals",
"description": "Get company financial fundamentals including P/E ratio, EPS, revenue, profit margin, dividend yield, and sector classification.",
"parameters": {
"symbol": { "type": "string", "required": true },
"period": { "type": "string", "required": false, "enum": ["quarterly", "annual"], "default": "annual" }
},
"bounty": { "type": "cpa", "rate": 0.10, "currency": "USDC" }
},
{
"name": "search_market_news",
"description": "Search recent market news and analysis by keyword, ticker, or sector. Returns headlines, summaries, sources, and publication timestamps.",
"parameters": {
"query": { "type": "string", "required": true },
"max_results": { "type": "integer", "required": false, "default": 10 }
}
}
],
"bounty": {
"type": "cpa",
"rate": 0.05,
"currency": "USDC"
}
}