-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent_api.json
More file actions
86 lines (86 loc) · 2.67 KB
/
Copy pathagent_api.json
File metadata and controls
86 lines (86 loc) · 2.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"publisher_id": "finance-agent",
"name": "Finance Agent",
"content": "The Finance Agent to get stock information from global stock market",
"website": "https://www.my_first_agent.com",
"field": "AI AGENT",
"subfield": "Finance",
"content_tag_list": "coding,python",
"github": "https://github.com/aiagenta2z/FinanceAgent",
"thumbnail_picture": "https://avatars.githubusercontent.com/u/242328252?s=200&v=4",
"upload_image_files": "",
"price_type": "PER_CALL",
"price_per_call_credit": 10.0,
"price_fixed_credit": 0.0,
"price_subscription": "Basic: your basic plan introduction, Advanced: Your Advanced Plan introduction, etc.",
"api_list": [
{
"api_id": "get_us_stock_market",
"protocol": "http",
"description": "Get US stock Market data",
"endpoint": "https://financeagent.aiagenta2z.com/financeagent/v1/api/get_us_stock_market",
"method": "GET",
"params": {
"symbol_list": "array[string]",
"market": "string=US"
},
"auth": {
"type": "API_KEY",
"header": "X-API-Key",
"value": "REGISTRY_API_GET_KEY"
}
},
{
"api_id": "get_hk_stock_market",
"protocol": "http",
"description": "Get Hong Kong stock market data",
"endpoint": "https://financeagent.aiagenta2z.com/financeagent/v1/api/get_hk_stock_market",
"method": "GET",
"params": {
"symbol_list": "array[string]",
"market": "string=HK"
},
"auth": {
"type": "API_KEY",
"header": "X-API-Key",
"value": "REGISTRY_API_GET_KEY"
}
},
{
"api_id": "get_cn_stock_market",
"protocol": "http",
"description": "Get China stock market data",
"endpoint": "https://financeagent.aiagenta2z.com/financeagent/v1/api/get_cn_stock_market",
"method": "GET",
"auth": {
"type": "API_KEY",
"header": "X-API-Key",
"value": "REGISTRY_API_GET_KEY"
}
},
{
"api_id": "get_uk_stock_market",
"protocol": "http",
"description": "Get UK stock market data",
"endpoint": "https://financeagent.aiagenta2z.com/financeagent/v1/api/get_uk_stock_market",
"method": "GET",
"auth": {
"type": "API_KEY",
"header": "X-API-Key",
"value": "REGISTRY_API_GET_KEY"
}
},
{
"api_id": "get_india_stock_market",
"protocol": "http",
"description": "Get India stock market data",
"endpoint": "https://financeagent.aiagenta2z.com/financeagent/v1/api/get_india_stock_market",
"method": "GET",
"auth": {
"type": "API_KEY",
"header": "X-API-Key",
"value": "REGISTRY_API_GET_KEY"
}
}
]
}