@bitget-ai/getagent-skill 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/VERSION +1 -1
- package/package.json +1 -1
- package/skills/getagent/SKILL.md +29 -1
- package/skills/getagent/examples/btc-ema-cross-demo/backtest.yaml +4 -0
- package/skills/getagent/references/api/publish.md +4 -0
- package/skills/getagent/references/backtest-engine.md +80 -151
- package/skills/getagent/references/package-schema.md +30 -8
- package/skills/getagent/references/sdk/backtest/catalog.md +15 -2
- package/skills/getagent/references/sdk/data/arxiv.md +8 -10
- package/skills/getagent/references/sdk/data/catalog.md +1 -4
- package/skills/getagent/references/sdk/data/commodity.md +25 -39
- package/skills/getagent/references/sdk/data/coverage.md +0 -3
- package/skills/getagent/references/sdk/data/crypto.md +158 -357
- package/skills/getagent/references/sdk/data/currency.md +7 -15
- package/skills/getagent/references/sdk/data/derivatives.md +35 -50
- package/skills/getagent/references/sdk/data/economy.md +175 -259
- package/skills/getagent/references/sdk/data/equity.md +257 -393
- package/skills/getagent/references/sdk/data/etf.md +40 -64
- package/skills/getagent/references/sdk/data/famafrench.md +38 -50
- package/skills/getagent/references/sdk/data/fixedincome.md +89 -139
- package/skills/getagent/references/sdk/data/imf_utils.md +0 -8
- package/skills/getagent/references/sdk/data/index.md +18 -32
- package/skills/getagent/references/sdk/data/news.md +52 -58
- package/skills/getagent/references/sdk/data/playbook-supported.md +965 -1600
- package/skills/getagent/references/sdk/data/regulators.md +23 -43
- package/skills/getagent/references/sdk/data/sentiment.md +12 -34
- package/skills/getagent/references/sdk/data/uscongress.md +13 -21
- package/skills/getagent/references/sdk/data/web_search.md +3 -7
- package/skills/getagent/references/sdk/data/wikipedia.md +12 -18
- package/skills/getagent/scripts/validate.py +127 -1
|
@@ -21,7 +21,7 @@ are callable through the DataSDK wrapper.
|
|
|
21
21
|
### `regulators.cftc.cot`
|
|
22
22
|
|
|
23
23
|
```python
|
|
24
|
-
data.regulators.cftc.cot(start_time=None, end_time=None, id='045601', report_type='legacy', futures_only=False
|
|
24
|
+
data.regulators.cftc.cot(start_time=None, end_time=None, id='045601', report_type='legacy', futures_only=False)
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
Summary: Cot
|
|
@@ -31,7 +31,6 @@ Summary: Cot
|
|
|
31
31
|
| Endpoint ID | `regulators.cftc.cot` |
|
|
32
32
|
| HTTP | `GET` |
|
|
33
33
|
| Path | `/inner/v1/agent-data/regulators/cftc/cot` |
|
|
34
|
-
| Default provider | `cftc` |
|
|
35
34
|
| SDK | `supported` |
|
|
36
35
|
| Host | `supported` |
|
|
37
36
|
| Notes | - |
|
|
@@ -43,16 +42,15 @@ Summary: Cot
|
|
|
43
42
|
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
44
43
|
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
45
44
|
| `id` | `no` | `string` | `045601` | A string with the CFTC market code or other identifying string, such as the contract market name, commodity name, or commodity group - i.e, 'gold' or 'japanese yen'.Default report is Fed Funds Futures. Use the 'cftc_market_code' for an exact match. |
|
|
46
|
-
| `report_type` | `no` | `string` | `legacy` | enum: legacy, disaggregated, financial, supplemental The type of report to retrieve. Set `id` as 'all' to return all items in the report type (default date range returns the latest report). The Legacy report is broken down by exchange with reported open interest further broken down into three trader classifications: commercial, non-commercial and non-reportable. The Disaggregated reports are broken down by Agriculture and Natural Resource contracts. The Disaggregated reports break down reportable open interest positions into four classifications: Producer/Merchant, Swap Dealers, Managed Money and Other Reportables. The Traders in Financial Futures (TFF) report includes financial contracts. The TFF report breaks down the reported open interest into five classifications: Dealer, Asset Manager, Leveraged Money, Other Reportables and Non-Reportables.
|
|
47
|
-
| `futures_only` | `no` | `boolean` | `false` | Returns the futures-only report. Default is False, for the combined report.
|
|
48
|
-
| `provider` | `no` | `string` | `cftc` | - |
|
|
45
|
+
| `report_type` | `no` | `string` | `legacy` | enum: legacy, disaggregated, financial, supplemental The type of report to retrieve. Set `id` as 'all' to return all items in the report type (default date range returns the latest report). The Legacy report is broken down by exchange with reported open interest further broken down into three trader classifications: commercial, non-commercial and non-reportable. The Disaggregated reports are broken down by Agriculture and Natural Resource contracts. The Disaggregated reports break down reportable open interest positions into four classifications: Producer/Merchant, Swap Dealers, Managed Money and Other Reportables. The Traders in Financial Futures (TFF) report includes financial contracts. The TFF report breaks down the reported open interest into five classifications: Dealer, Asset Manager, Leveraged Money, Other Reportables and Non-Reportables. |
|
|
46
|
+
| `futures_only` | `no` | `boolean` | `false` | Returns the futures-only report. Default is False, for the combined report. |
|
|
49
47
|
|
|
50
48
|
---
|
|
51
49
|
|
|
52
50
|
### `regulators.cftc.cot_search`
|
|
53
51
|
|
|
54
52
|
```python
|
|
55
|
-
data.regulators.cftc.cot_search(query=''
|
|
53
|
+
data.regulators.cftc.cot_search(query='')
|
|
56
54
|
```
|
|
57
55
|
|
|
58
56
|
Summary: Cot Search
|
|
@@ -62,7 +60,6 @@ Summary: Cot Search
|
|
|
62
60
|
| Endpoint ID | `regulators.cftc.cot_search` |
|
|
63
61
|
| HTTP | `GET` |
|
|
64
62
|
| Path | `/inner/v1/agent-data/regulators/cftc/cot_search` |
|
|
65
|
-
| Default provider | `cftc` |
|
|
66
63
|
| SDK | `supported` |
|
|
67
64
|
| Host | `supported` |
|
|
68
65
|
| Notes | - |
|
|
@@ -72,14 +69,13 @@ Summary: Cot Search
|
|
|
72
69
|
| Param | Required | Type | Default | Notes |
|
|
73
70
|
|---|---|---|---|---|
|
|
74
71
|
| `query` | `no` | `string` | `` | Search query. |
|
|
75
|
-
| `provider` | `no` | `string` | `cftc` | - |
|
|
76
72
|
|
|
77
73
|
---
|
|
78
74
|
|
|
79
75
|
### `regulators.sec.cik_map`
|
|
80
76
|
|
|
81
77
|
```python
|
|
82
|
-
data.regulators.sec.cik_map(symbol=..., use_cache=True
|
|
78
|
+
data.regulators.sec.cik_map(symbol=..., use_cache=True)
|
|
83
79
|
```
|
|
84
80
|
|
|
85
81
|
Summary: Cik Map
|
|
@@ -89,7 +85,6 @@ Summary: Cik Map
|
|
|
89
85
|
| Endpoint ID | `regulators.sec.cik_map` |
|
|
90
86
|
| HTTP | `GET` |
|
|
91
87
|
| Path | `/inner/v1/agent-data/regulators/sec/cik_map` |
|
|
92
|
-
| Default provider | `sec` |
|
|
93
88
|
| SDK | `supported` |
|
|
94
89
|
| Host | `supported` |
|
|
95
90
|
| Notes | - |
|
|
@@ -99,15 +94,14 @@ Summary: Cik Map
|
|
|
99
94
|
| Param | Required | Type | Default | Notes |
|
|
100
95
|
|---|---|---|---|---|
|
|
101
96
|
| `symbol` | `yes` | `string` | `-` | Symbol to get data for. |
|
|
102
|
-
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache for the request, default is True.
|
|
103
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
97
|
+
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache for the request, default is True. |
|
|
104
98
|
|
|
105
99
|
---
|
|
106
100
|
|
|
107
101
|
### `regulators.sec.filing_headers`
|
|
108
102
|
|
|
109
103
|
```python
|
|
110
|
-
data.regulators.sec.filing_headers(url='', use_cache=True
|
|
104
|
+
data.regulators.sec.filing_headers(url='', use_cache=True)
|
|
111
105
|
```
|
|
112
106
|
|
|
113
107
|
Summary: Filing Headers
|
|
@@ -117,7 +111,6 @@ Summary: Filing Headers
|
|
|
117
111
|
| Endpoint ID | `regulators.sec.filing_headers` |
|
|
118
112
|
| HTTP | `GET` |
|
|
119
113
|
| Path | `/inner/v1/agent-data/regulators/sec/filing_headers` |
|
|
120
|
-
| Default provider | `sec` |
|
|
121
114
|
| SDK | `supported` |
|
|
122
115
|
| Host | `supported` |
|
|
123
116
|
| Notes | - |
|
|
@@ -126,16 +119,15 @@ Summary: Filing Headers
|
|
|
126
119
|
|
|
127
120
|
| Param | Required | Type | Default | Notes |
|
|
128
121
|
|---|---|---|---|---|
|
|
129
|
-
| `url` | `no` | `string` | `` | URL for the SEC filing. The specific URL is not directly used or downloaded, but is used to generate the base URL for the filing. e.g. https://www.sec.gov/Archives/edgar/data/317540/000031754024000045/coke-20240731.htm and https://www.sec.gov/Archives/edgar/data/317540/000031754024000045/ are both valid URLs for the same filing.
|
|
130
|
-
| `use_cache` | `no` | `boolean` | `true` | Use cache for the index headers and cover page. Default is True.
|
|
131
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
122
|
+
| `url` | `no` | `string` | `` | URL for the SEC filing. The specific URL is not directly used or downloaded, but is used to generate the base URL for the filing. e.g. https://www.sec.gov/Archives/edgar/data/317540/000031754024000045/coke-20240731.htm and https://www.sec.gov/Archives/edgar/data/317540/000031754024000045/ are both valid URLs for the same filing. |
|
|
123
|
+
| `use_cache` | `no` | `boolean` | `true` | Use cache for the index headers and cover page. Default is True. |
|
|
132
124
|
|
|
133
125
|
---
|
|
134
126
|
|
|
135
127
|
### `regulators.sec.htm_file`
|
|
136
128
|
|
|
137
129
|
```python
|
|
138
|
-
data.regulators.sec.htm_file(url='', use_cache=True
|
|
130
|
+
data.regulators.sec.htm_file(url='', use_cache=True)
|
|
139
131
|
```
|
|
140
132
|
|
|
141
133
|
Summary: Htm File
|
|
@@ -145,7 +137,6 @@ Summary: Htm File
|
|
|
145
137
|
| Endpoint ID | `regulators.sec.htm_file` |
|
|
146
138
|
| HTTP | `GET` |
|
|
147
139
|
| Path | `/inner/v1/agent-data/regulators/sec/htm_file` |
|
|
148
|
-
| Default provider | `sec` |
|
|
149
140
|
| SDK | `supported` |
|
|
150
141
|
| Host | `supported` |
|
|
151
142
|
| Notes | - |
|
|
@@ -154,16 +145,15 @@ Summary: Htm File
|
|
|
154
145
|
|
|
155
146
|
| Param | Required | Type | Default | Notes |
|
|
156
147
|
|---|---|---|---|---|
|
|
157
|
-
| `url` | `no` | `string` | `` | URL for the SEC filing.
|
|
158
|
-
| `use_cache` | `no` | `boolean` | `true` | Cache the file for use later. Default is True.
|
|
159
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
148
|
+
| `url` | `no` | `string` | `` | URL for the SEC filing. |
|
|
149
|
+
| `use_cache` | `no` | `boolean` | `true` | Cache the file for use later. Default is True. |
|
|
160
150
|
|
|
161
151
|
---
|
|
162
152
|
|
|
163
153
|
### `regulators.sec.institutions_search`
|
|
164
154
|
|
|
165
155
|
```python
|
|
166
|
-
data.regulators.sec.institutions_search(query='', use_cache=True
|
|
156
|
+
data.regulators.sec.institutions_search(query='', use_cache=True)
|
|
167
157
|
```
|
|
168
158
|
|
|
169
159
|
Summary: Institutions Search
|
|
@@ -173,7 +163,6 @@ Summary: Institutions Search
|
|
|
173
163
|
| Endpoint ID | `regulators.sec.institutions_search` |
|
|
174
164
|
| HTTP | `GET` |
|
|
175
165
|
| Path | `/inner/v1/agent-data/regulators/sec/institutions_search` |
|
|
176
|
-
| Default provider | `sec` |
|
|
177
166
|
| SDK | `supported` |
|
|
178
167
|
| Host | `supported` |
|
|
179
168
|
| Notes | - |
|
|
@@ -183,15 +172,14 @@ Summary: Institutions Search
|
|
|
183
172
|
| Param | Required | Type | Default | Notes |
|
|
184
173
|
|---|---|---|---|---|
|
|
185
174
|
| `query` | `no` | `string` | `` | Search query. |
|
|
186
|
-
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache.
|
|
187
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
175
|
+
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache. |
|
|
188
176
|
|
|
189
177
|
---
|
|
190
178
|
|
|
191
179
|
### `regulators.sec.rss_litigation`
|
|
192
180
|
|
|
193
181
|
```python
|
|
194
|
-
data.regulators.sec.rss_litigation(
|
|
182
|
+
data.regulators.sec.rss_litigation()
|
|
195
183
|
```
|
|
196
184
|
|
|
197
185
|
Summary: Rss Litigation
|
|
@@ -201,7 +189,6 @@ Summary: Rss Litigation
|
|
|
201
189
|
| Endpoint ID | `regulators.sec.rss_litigation` |
|
|
202
190
|
| HTTP | `GET` |
|
|
203
191
|
| Path | `/inner/v1/agent-data/regulators/sec/rss_litigation` |
|
|
204
|
-
| Default provider | `sec` |
|
|
205
192
|
| SDK | `supported` |
|
|
206
193
|
| Host | `supported` |
|
|
207
194
|
| Notes | - |
|
|
@@ -210,14 +197,13 @@ Summary: Rss Litigation
|
|
|
210
197
|
|
|
211
198
|
| Param | Required | Type | Default | Notes |
|
|
212
199
|
|---|---|---|---|---|
|
|
213
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
214
200
|
|
|
215
201
|
---
|
|
216
202
|
|
|
217
203
|
### `regulators.sec.schema_files`
|
|
218
204
|
|
|
219
205
|
```python
|
|
220
|
-
data.regulators.sec.schema_files(taxonomy=None, year=None, component=None, category=None
|
|
206
|
+
data.regulators.sec.schema_files(taxonomy=None, year=None, component=None, category=None)
|
|
221
207
|
```
|
|
222
208
|
|
|
223
209
|
Summary: Schema Files
|
|
@@ -227,7 +213,6 @@ Summary: Schema Files
|
|
|
227
213
|
| Endpoint ID | `regulators.sec.schema_files` |
|
|
228
214
|
| HTTP | `GET` |
|
|
229
215
|
| Path | `/inner/v1/agent-data/regulators/sec/schema_files` |
|
|
230
|
-
| Default provider | `sec` |
|
|
231
216
|
| SDK | `supported` |
|
|
232
217
|
| Host | `supported` |
|
|
233
218
|
| Notes | - |
|
|
@@ -236,18 +221,17 @@ Summary: Schema Files
|
|
|
236
221
|
|
|
237
222
|
| Param | Required | Type | Default | Notes |
|
|
238
223
|
|---|---|---|---|---|
|
|
239
|
-
| `taxonomy` | `no` | `string | null` | `-` | Taxonomy family to explore. Omit to list all available taxonomies and their descriptions.
|
|
240
|
-
| `year` | `no` | `integer | null` | `-` | Taxonomy year (e.g. 2011+ for us-gaap, varies by taxonomy). Defaults to the most recent year when omitted.
|
|
241
|
-
| `component` | `no` | `string | null` | `-` | Presentation component to retrieve. Values are taxonomy-specific. Omit to return all components for the taxonomy.
|
|
242
|
-
| `category` | `no` | `string | null` | `-` | Filter taxonomies by SEC filer category.
|
|
243
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
224
|
+
| `taxonomy` | `no` | `string | null` | `-` | Taxonomy family to explore. Omit to list all available taxonomies and their descriptions. |
|
|
225
|
+
| `year` | `no` | `integer | null` | `-` | Taxonomy year (e.g. 2011+ for us-gaap, varies by taxonomy). Defaults to the most recent year when omitted. |
|
|
226
|
+
| `component` | `no` | `string | null` | `-` | Presentation component to retrieve. Values are taxonomy-specific. Omit to return all components for the taxonomy. |
|
|
227
|
+
| `category` | `no` | `string | null` | `-` | Filter taxonomies by SEC filer category. |
|
|
244
228
|
|
|
245
229
|
---
|
|
246
230
|
|
|
247
231
|
### `regulators.sec.sic_search`
|
|
248
232
|
|
|
249
233
|
```python
|
|
250
|
-
data.regulators.sec.sic_search(query='', use_cache=True
|
|
234
|
+
data.regulators.sec.sic_search(query='', use_cache=True)
|
|
251
235
|
```
|
|
252
236
|
|
|
253
237
|
Summary: Sic Search
|
|
@@ -257,7 +241,6 @@ Summary: Sic Search
|
|
|
257
241
|
| Endpoint ID | `regulators.sec.sic_search` |
|
|
258
242
|
| HTTP | `GET` |
|
|
259
243
|
| Path | `/inner/v1/agent-data/regulators/sec/sic_search` |
|
|
260
|
-
| Default provider | `sec` |
|
|
261
244
|
| SDK | `supported` |
|
|
262
245
|
| Host | `supported` |
|
|
263
246
|
| Notes | - |
|
|
@@ -267,15 +250,14 @@ Summary: Sic Search
|
|
|
267
250
|
| Param | Required | Type | Default | Notes |
|
|
268
251
|
|---|---|---|---|---|
|
|
269
252
|
| `query` | `no` | `string` | `` | Search query. |
|
|
270
|
-
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache.
|
|
271
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
253
|
+
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache. |
|
|
272
254
|
|
|
273
255
|
---
|
|
274
256
|
|
|
275
257
|
### `regulators.sec.symbol_map`
|
|
276
258
|
|
|
277
259
|
```python
|
|
278
|
-
data.regulators.sec.symbol_map(query=..., use_cache=True
|
|
260
|
+
data.regulators.sec.symbol_map(query=..., use_cache=True)
|
|
279
261
|
```
|
|
280
262
|
|
|
281
263
|
Summary: Symbol Map
|
|
@@ -285,7 +267,6 @@ Summary: Symbol Map
|
|
|
285
267
|
| Endpoint ID | `regulators.sec.symbol_map` |
|
|
286
268
|
| HTTP | `GET` |
|
|
287
269
|
| Path | `/inner/v1/agent-data/regulators/sec/symbol_map` |
|
|
288
|
-
| Default provider | `sec` |
|
|
289
270
|
| SDK | `supported` |
|
|
290
271
|
| Host | `supported` |
|
|
291
272
|
| Notes | - |
|
|
@@ -296,4 +277,3 @@ Summary: Symbol Map
|
|
|
296
277
|
|---|---|---|---|---|
|
|
297
278
|
| `query` | `yes` | `string` | `-` | Search query. |
|
|
298
279
|
| `use_cache` | `no` | `boolean | null` | `true` | Whether or not to use cache. If True, cache will store for seven days. |
|
|
299
|
-
| `provider` | `no` | `string` | `sec` | - |
|
|
@@ -22,7 +22,7 @@ are callable through the DataSDK wrapper.
|
|
|
22
22
|
### `sentiment.followin_coin_news`
|
|
23
23
|
|
|
24
24
|
```python
|
|
25
|
-
data.sentiment.followin_coin_news(symbol=..., limit=20
|
|
25
|
+
data.sentiment.followin_coin_news(symbol=..., limit=20)
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
Summary: Followin Coin News
|
|
@@ -32,7 +32,6 @@ Summary: Followin Coin News
|
|
|
32
32
|
| Endpoint ID | `sentiment.followin_coin_news` |
|
|
33
33
|
| HTTP | `GET` |
|
|
34
34
|
| Path | `/inner/v1/agent-data/sentiment/followin_coin_news` |
|
|
35
|
-
| Default provider | `followin` |
|
|
36
35
|
| SDK | `supported` |
|
|
37
36
|
| Host | `supported` |
|
|
38
37
|
| Notes | - |
|
|
@@ -43,14 +42,13 @@ Summary: Followin Coin News
|
|
|
43
42
|
|---|---|---|---|---|
|
|
44
43
|
| `symbol` | `yes` | `string` | `-` | Coin/token symbol to fetch news for (e.g. 'BTC', 'ETH'). |
|
|
45
44
|
| `limit` | `no` | `integer` | `20` | Maximum number of articles to return. Default 20. |
|
|
46
|
-
| `provider` | `no` | `string` | `followin` | - |
|
|
47
45
|
|
|
48
46
|
---
|
|
49
47
|
|
|
50
48
|
### `sentiment.followin_news`
|
|
51
49
|
|
|
52
50
|
```python
|
|
53
|
-
data.sentiment.followin_news(news_type='trending', limit=20
|
|
51
|
+
data.sentiment.followin_news(news_type='trending', limit=20)
|
|
54
52
|
```
|
|
55
53
|
|
|
56
54
|
Summary: Followin News
|
|
@@ -60,7 +58,6 @@ Summary: Followin News
|
|
|
60
58
|
| Endpoint ID | `sentiment.followin_news` |
|
|
61
59
|
| HTTP | `GET` |
|
|
62
60
|
| Path | `/inner/v1/agent-data/sentiment/followin_news` |
|
|
63
|
-
| Default provider | `followin` |
|
|
64
61
|
| SDK | `supported` |
|
|
65
62
|
| Host | `supported` |
|
|
66
63
|
| Notes | - |
|
|
@@ -71,14 +68,13 @@ Summary: Followin News
|
|
|
71
68
|
|---|---|---|---|---|
|
|
72
69
|
| `news_type` | `no` | `string` | `trending` | Type of news to fetch. 'trending' = hot news feed, 'flash' = flash/breaking news, 'kol_opinions' = KOL opinion articles. |
|
|
73
70
|
| `limit` | `no` | `integer` | `20` | Maximum number of articles to return. Default 20. |
|
|
74
|
-
| `provider` | `no` | `string` | `followin` | - |
|
|
75
71
|
|
|
76
72
|
---
|
|
77
73
|
|
|
78
74
|
### `sentiment.followin_trending_topics`
|
|
79
75
|
|
|
80
76
|
```python
|
|
81
|
-
data.sentiment.followin_trending_topics(limit=20
|
|
77
|
+
data.sentiment.followin_trending_topics(limit=20)
|
|
82
78
|
```
|
|
83
79
|
|
|
84
80
|
Summary: Followin Trending Topics
|
|
@@ -88,7 +84,6 @@ Summary: Followin Trending Topics
|
|
|
88
84
|
| Endpoint ID | `sentiment.followin_trending_topics` |
|
|
89
85
|
| HTTP | `GET` |
|
|
90
86
|
| Path | `/inner/v1/agent-data/sentiment/followin_trending_topics` |
|
|
91
|
-
| Default provider | `followin` |
|
|
92
87
|
| SDK | `supported` |
|
|
93
88
|
| Host | `supported` |
|
|
94
89
|
| Notes | - |
|
|
@@ -98,14 +93,13 @@ Summary: Followin Trending Topics
|
|
|
98
93
|
| Param | Required | Type | Default | Notes |
|
|
99
94
|
|---|---|---|---|---|
|
|
100
95
|
| `limit` | `no` | `integer` | `20` | Maximum number of topics to return. Default 20. |
|
|
101
|
-
| `provider` | `no` | `string` | `followin` | - |
|
|
102
96
|
|
|
103
97
|
---
|
|
104
98
|
|
|
105
99
|
### `sentiment.market_fear_greed`
|
|
106
100
|
|
|
107
101
|
```python
|
|
108
|
-
data.sentiment.market_fear_greed(
|
|
102
|
+
data.sentiment.market_fear_greed()
|
|
109
103
|
```
|
|
110
104
|
|
|
111
105
|
Summary: Market Fear Greed
|
|
@@ -115,7 +109,6 @@ Summary: Market Fear Greed
|
|
|
115
109
|
| Endpoint ID | `sentiment.market_fear_greed` |
|
|
116
110
|
| HTTP | `GET` |
|
|
117
111
|
| Path | `/inner/v1/agent-data/sentiment/market_fear_greed` |
|
|
118
|
-
| Default provider | `feargreed` |
|
|
119
112
|
| SDK | `supported` |
|
|
120
113
|
| Host | `supported` |
|
|
121
114
|
| Notes | - |
|
|
@@ -124,14 +117,13 @@ Summary: Market Fear Greed
|
|
|
124
117
|
|
|
125
118
|
| Param | Required | Type | Default | Notes |
|
|
126
119
|
|---|---|---|---|---|
|
|
127
|
-
| `provider` | `no` | `string` | `feargreed` | - |
|
|
128
120
|
|
|
129
121
|
---
|
|
130
122
|
|
|
131
123
|
### `sentiment.news`
|
|
132
124
|
|
|
133
125
|
```python
|
|
134
|
-
data.sentiment.news(category='all', limit=20
|
|
126
|
+
data.sentiment.news(category='all', limit=20)
|
|
135
127
|
```
|
|
136
128
|
|
|
137
129
|
Summary: News
|
|
@@ -141,7 +133,6 @@ Summary: News
|
|
|
141
133
|
| Endpoint ID | `sentiment.news` |
|
|
142
134
|
| HTTP | `GET` |
|
|
143
135
|
| Path | `/inner/v1/agent-data/sentiment/news` |
|
|
144
|
-
| Default provider | `rssnews` |
|
|
145
136
|
| SDK | `supported` |
|
|
146
137
|
| Host | `supported` |
|
|
147
138
|
| Notes | - |
|
|
@@ -152,14 +143,13 @@ Summary: News
|
|
|
152
143
|
|---|---|---|---|---|
|
|
153
144
|
| `category` | `no` | `string` | `all` | News category filter. 'all' fetches all 44 sources concurrently. Other options filter by source group: 'crypto_core' (7 sources), 'crypto_high_freq' (4), 'crypto_supplement' (6), 'macro' (4), 'kol' (4), 'tech_ai' (5), 'geopolitical' (5), 'reddit' (5), 'chinese_japanese' (2), 'other' (2). |
|
|
154
145
|
| `limit` | `no` | `integer` | `20` | Maximum number of articles to return per source. Default 20. |
|
|
155
|
-
| `provider` | `no` | `string` | `rssnews` | - |
|
|
156
146
|
|
|
157
147
|
---
|
|
158
148
|
|
|
159
149
|
### `sentiment.trending`
|
|
160
150
|
|
|
161
151
|
```python
|
|
162
|
-
data.sentiment.trending(filter='all-stocks', page=1
|
|
152
|
+
data.sentiment.trending(filter='all-stocks', page=1)
|
|
163
153
|
```
|
|
164
154
|
|
|
165
155
|
Summary: Trending
|
|
@@ -169,7 +159,6 @@ Summary: Trending
|
|
|
169
159
|
| Endpoint ID | `sentiment.trending` |
|
|
170
160
|
| HTTP | `GET` |
|
|
171
161
|
| Path | `/inner/v1/agent-data/sentiment/trending` |
|
|
172
|
-
| Default provider | `apewisdom` |
|
|
173
162
|
| SDK | `supported` |
|
|
174
163
|
| Host | `supported` |
|
|
175
164
|
| Notes | - |
|
|
@@ -178,16 +167,15 @@ Summary: Trending
|
|
|
178
167
|
|
|
179
168
|
| Param | Required | Type | Default | Notes |
|
|
180
169
|
|---|---|---|---|---|
|
|
181
|
-
| `filter` | `no` | `string` | `all-stocks` | Category or subreddit filter for trending data.; The subreddit or category filter. 'all-stocks' aggregates all stock-related subreddits, 'all-crypto' aggregates all crypto-related subreddits, '4chan' is /biz/ board, or specific subreddits like 'wallstreetbets', 'stocks', 'investing', 'cryptocurrency'.
|
|
170
|
+
| `filter` | `no` | `string` | `all-stocks` | Category or subreddit filter for trending data.; The subreddit or category filter. 'all-stocks' aggregates all stock-related subreddits, 'all-crypto' aggregates all crypto-related subreddits, '4chan' is /biz/ board, or specific subreddits like 'wallstreetbets', 'stocks', 'investing', 'cryptocurrency'. |
|
|
182
171
|
| `page` | `no` | `integer` | `1` | Page number for pagination. |
|
|
183
|
-
| `provider` | `no` | `string` | `apewisdom` | - |
|
|
184
172
|
|
|
185
173
|
---
|
|
186
174
|
|
|
187
175
|
### `sentiment.twitter_list_timeline`
|
|
188
176
|
|
|
189
177
|
```python
|
|
190
|
-
data.sentiment.twitter_list_timeline(list_id=..., count=20, cursor=''
|
|
178
|
+
data.sentiment.twitter_list_timeline(list_id=..., count=20, cursor='')
|
|
191
179
|
```
|
|
192
180
|
|
|
193
181
|
Summary: Twitter List Timeline
|
|
@@ -197,7 +185,6 @@ Summary: Twitter List Timeline
|
|
|
197
185
|
| Endpoint ID | `sentiment.twitter_list_timeline` |
|
|
198
186
|
| HTTP | `GET` |
|
|
199
187
|
| Path | `/inner/v1/agent-data/sentiment/twitter_list_timeline` |
|
|
200
|
-
| Default provider | `twitter` |
|
|
201
188
|
| SDK | `supported` |
|
|
202
189
|
| Host | `supported` |
|
|
203
190
|
| Notes | - |
|
|
@@ -209,14 +196,13 @@ Summary: Twitter List Timeline
|
|
|
209
196
|
| `list_id` | `yes` | `string` | `-` | Twitter List ID to fetch tweets from. |
|
|
210
197
|
| `count` | `no` | `integer` | `20` | Number of tweets to return (max 100). |
|
|
211
198
|
| `cursor` | `no` | `string` | `` | Pagination cursor for next page. Leave empty for first page. |
|
|
212
|
-
| `provider` | `no` | `string` | `twitter` | - |
|
|
213
199
|
|
|
214
200
|
---
|
|
215
201
|
|
|
216
202
|
### `sentiment.twitter_search`
|
|
217
203
|
|
|
218
204
|
```python
|
|
219
|
-
data.sentiment.twitter_search(query=..., count=20, cursor='', product='Latest'
|
|
205
|
+
data.sentiment.twitter_search(query=..., count=20, cursor='', product='Latest')
|
|
220
206
|
```
|
|
221
207
|
|
|
222
208
|
Summary: Twitter Search
|
|
@@ -226,7 +212,6 @@ Summary: Twitter Search
|
|
|
226
212
|
| Endpoint ID | `sentiment.twitter_search` |
|
|
227
213
|
| HTTP | `GET` |
|
|
228
214
|
| Path | `/inner/v1/agent-data/sentiment/twitter_search` |
|
|
229
|
-
| Default provider | `twitter` |
|
|
230
215
|
| SDK | `supported` |
|
|
231
216
|
| Host | `supported` |
|
|
232
217
|
| Notes | - |
|
|
@@ -239,14 +224,13 @@ Summary: Twitter Search
|
|
|
239
224
|
| `count` | `no` | `integer` | `20` | Number of tweets to return (max 40). |
|
|
240
225
|
| `cursor` | `no` | `string` | `` | Pagination cursor for next page. Leave empty for first page. |
|
|
241
226
|
| `product` | `no` | `string` | `Latest` | Timeline product type. One of 'Latest' or 'Top'. |
|
|
242
|
-
| `provider` | `no` | `string` | `twitter` | - |
|
|
243
227
|
|
|
244
228
|
---
|
|
245
229
|
|
|
246
230
|
### `sentiment.twitter_tweet_detail`
|
|
247
231
|
|
|
248
232
|
```python
|
|
249
|
-
data.sentiment.twitter_tweet_detail(tweet_id
|
|
233
|
+
data.sentiment.twitter_tweet_detail(tweet_id=...)
|
|
250
234
|
```
|
|
251
235
|
|
|
252
236
|
Summary: Twitter Tweet Detail
|
|
@@ -256,7 +240,6 @@ Summary: Twitter Tweet Detail
|
|
|
256
240
|
| Endpoint ID | `sentiment.twitter_tweet_detail` |
|
|
257
241
|
| HTTP | `GET` |
|
|
258
242
|
| Path | `/inner/v1/agent-data/sentiment/twitter_tweet_detail` |
|
|
259
|
-
| Default provider | `twitter` |
|
|
260
243
|
| SDK | `supported` |
|
|
261
244
|
| Host | `supported` |
|
|
262
245
|
| Notes | - |
|
|
@@ -266,14 +249,13 @@ Summary: Twitter Tweet Detail
|
|
|
266
249
|
| Param | Required | Type | Default | Notes |
|
|
267
250
|
|---|---|---|---|---|
|
|
268
251
|
| `tweet_id` | `yes` | `string` | `-` | The focal tweet ID to fetch details for. |
|
|
269
|
-
| `provider` | `no` | `string` | `twitter` | - |
|
|
270
252
|
|
|
271
253
|
---
|
|
272
254
|
|
|
273
255
|
### `sentiment.twitter_user_by_id`
|
|
274
256
|
|
|
275
257
|
```python
|
|
276
|
-
data.sentiment.twitter_user_by_id(user_id
|
|
258
|
+
data.sentiment.twitter_user_by_id(user_id=...)
|
|
277
259
|
```
|
|
278
260
|
|
|
279
261
|
Summary: Twitter User By Id
|
|
@@ -283,7 +265,6 @@ Summary: Twitter User By Id
|
|
|
283
265
|
| Endpoint ID | `sentiment.twitter_user_by_id` |
|
|
284
266
|
| HTTP | `GET` |
|
|
285
267
|
| Path | `/inner/v1/agent-data/sentiment/twitter_user_by_id` |
|
|
286
|
-
| Default provider | `twitter` |
|
|
287
268
|
| SDK | `supported` |
|
|
288
269
|
| Host | `supported` |
|
|
289
270
|
| Notes | - |
|
|
@@ -293,14 +274,13 @@ Summary: Twitter User By Id
|
|
|
293
274
|
| Param | Required | Type | Default | Notes |
|
|
294
275
|
|---|---|---|---|---|
|
|
295
276
|
| `user_id` | `yes` | `string` | `-` | Twitter user ID (numeric string). |
|
|
296
|
-
| `provider` | `no` | `string` | `twitter` | - |
|
|
297
277
|
|
|
298
278
|
---
|
|
299
279
|
|
|
300
280
|
### `sentiment.twitter_user_by_name`
|
|
301
281
|
|
|
302
282
|
```python
|
|
303
|
-
data.sentiment.twitter_user_by_name(screen_name
|
|
283
|
+
data.sentiment.twitter_user_by_name(screen_name=...)
|
|
304
284
|
```
|
|
305
285
|
|
|
306
286
|
Summary: Twitter User By Name
|
|
@@ -310,7 +290,6 @@ Summary: Twitter User By Name
|
|
|
310
290
|
| Endpoint ID | `sentiment.twitter_user_by_name` |
|
|
311
291
|
| HTTP | `GET` |
|
|
312
292
|
| Path | `/inner/v1/agent-data/sentiment/twitter_user_by_name` |
|
|
313
|
-
| Default provider | `twitter` |
|
|
314
293
|
| SDK | `supported` |
|
|
315
294
|
| Host | `supported` |
|
|
316
295
|
| Notes | - |
|
|
@@ -320,4 +299,3 @@ Summary: Twitter User By Name
|
|
|
320
299
|
| Param | Required | Type | Default | Notes |
|
|
321
300
|
|---|---|---|---|---|
|
|
322
301
|
| `screen_name` | `yes` | `string` | `-` | Twitter screen name / @handle (without @). |
|
|
323
|
-
| `provider` | `no` | `string` | `twitter` | - |
|
|
@@ -15,7 +15,7 @@ are callable through the DataSDK wrapper.
|
|
|
15
15
|
### `uscongress.bill_info`
|
|
16
16
|
|
|
17
17
|
```python
|
|
18
|
-
data.uscongress.bill_info(bill_url=None
|
|
18
|
+
data.uscongress.bill_info(bill_url=None)
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Summary: Bill Info
|
|
@@ -25,7 +25,6 @@ Summary: Bill Info
|
|
|
25
25
|
| Endpoint ID | `uscongress.bill_info` |
|
|
26
26
|
| HTTP | `GET` |
|
|
27
27
|
| Path | `/inner/v1/agent-data/uscongress/bill_info` |
|
|
28
|
-
| Default provider | `congress_gov` |
|
|
29
28
|
| SDK | `supported` |
|
|
30
29
|
| Host | `supported` |
|
|
31
30
|
| Notes | - |
|
|
@@ -34,15 +33,14 @@ Summary: Bill Info
|
|
|
34
33
|
|
|
35
34
|
| Param | Required | Type | Default | Notes |
|
|
36
35
|
|---|---|---|---|---|
|
|
37
|
-
| `bill_url` | `no` | `string | null` | `-` | Enter a base URL of a bill (e.g., 'https://api.congress.gov/v3/bill/119/s/1947?format=json'). Alternatively, you can enter a bill number (e.g., '119/s/1947').
|
|
38
|
-
| `provider` | `no` | `string` | `congress_gov` | - |
|
|
36
|
+
| `bill_url` | `no` | `string | null` | `-` | Enter a base URL of a bill (e.g., 'https://api.congress.gov/v3/bill/119/s/1947?format=json'). Alternatively, you can enter a bill number (e.g., '119/s/1947'). |
|
|
39
37
|
|
|
40
38
|
---
|
|
41
39
|
|
|
42
40
|
### `uscongress.bill_text`
|
|
43
41
|
|
|
44
42
|
```python
|
|
45
|
-
data.uscongress.bill_text(
|
|
43
|
+
data.uscongress.bill_text(, body=...)
|
|
46
44
|
```
|
|
47
45
|
|
|
48
46
|
Summary: Bill Text
|
|
@@ -52,7 +50,6 @@ Summary: Bill Text
|
|
|
52
50
|
| Endpoint ID | `uscongress.bill_text` |
|
|
53
51
|
| HTTP | `POST` |
|
|
54
52
|
| Path | `/inner/v1/agent-data/uscongress/bill_text` |
|
|
55
|
-
| Default provider | `congress_gov` |
|
|
56
53
|
| SDK | `supported` |
|
|
57
54
|
| Host | `supported` |
|
|
58
55
|
| Notes | - |
|
|
@@ -61,15 +58,14 @@ Summary: Bill Text
|
|
|
61
58
|
|
|
62
59
|
| Param | Required | Type | Default | Notes |
|
|
63
60
|
|---|---|---|---|---|
|
|
64
|
-
| `
|
|
65
|
-
| `body` | `no` | `string | array | object | null` | `-` | List of direct bill URLs to download. Multiple comma separated items allowed. (provider: congress_gov) |
|
|
61
|
+
| `body` | `no` | `string | array | object | null` | `-` | List of direct bill URLs to download. Multiple comma separated items allowed. |
|
|
66
62
|
|
|
67
63
|
---
|
|
68
64
|
|
|
69
65
|
### `uscongress.bill_text_urls`
|
|
70
66
|
|
|
71
67
|
```python
|
|
72
|
-
data.uscongress.bill_text_urls(bill_url=..., is_workspace=False
|
|
68
|
+
data.uscongress.bill_text_urls(bill_url=..., is_workspace=False)
|
|
73
69
|
```
|
|
74
70
|
|
|
75
71
|
Summary: Bill Text Urls
|
|
@@ -79,7 +75,6 @@ Summary: Bill Text Urls
|
|
|
79
75
|
| Endpoint ID | `uscongress.bill_text_urls` |
|
|
80
76
|
| HTTP | `GET` |
|
|
81
77
|
| Path | `/inner/v1/agent-data/uscongress/bill_text_urls` |
|
|
82
|
-
| Default provider | `congress_gov` |
|
|
83
78
|
| SDK | `supported` |
|
|
84
79
|
| Host | `supported` |
|
|
85
80
|
| Notes | - |
|
|
@@ -90,14 +85,13 @@ Summary: Bill Text Urls
|
|
|
90
85
|
|---|---|---|---|---|
|
|
91
86
|
| `bill_url` | `yes` | `string` | `-` | - |
|
|
92
87
|
| `is_workspace` | `no` | `boolean` | `false` | - |
|
|
93
|
-
| `provider` | `no` | `string` | `congress_gov` | - |
|
|
94
88
|
|
|
95
89
|
---
|
|
96
90
|
|
|
97
91
|
### `uscongress.bills`
|
|
98
92
|
|
|
99
93
|
```python
|
|
100
|
-
data.uscongress.bills(congress=None, bill_type=None, start_date=None, end_date=None, limit=None, offset=None, sort_by='desc'
|
|
94
|
+
data.uscongress.bills(congress=None, bill_type=None, start_date=None, end_date=None, limit=None, offset=None, sort_by='desc')
|
|
101
95
|
```
|
|
102
96
|
|
|
103
97
|
Summary: Bills
|
|
@@ -107,7 +101,6 @@ Summary: Bills
|
|
|
107
101
|
| Endpoint ID | `uscongress.bills` |
|
|
108
102
|
| HTTP | `GET` |
|
|
109
103
|
| Path | `/inner/v1/agent-data/uscongress/bills` |
|
|
110
|
-
| Default provider | `congress_gov` |
|
|
111
104
|
| SDK | `supported` |
|
|
112
105
|
| Host | `supported` |
|
|
113
106
|
| Notes | - |
|
|
@@ -116,11 +109,10 @@ Summary: Bills
|
|
|
116
109
|
|
|
117
110
|
| Param | Required | Type | Default | Notes |
|
|
118
111
|
|---|---|---|---|---|
|
|
119
|
-
| `congress` | `no` | `integer | null` | `-` | Congress number (e.g., 118 for the 118th Congress). The 103rd Congress started in 1993, which is the earliest date supporting full text versions. Each Congress spans two years, starting in odd-numbered years.
|
|
120
|
-
| `bill_type` | `no` | `string | null` | `-` | Bill type (e.g., "hr" for House bills). Must be one of: hr, s, hjres, sjres, hconres, sconres, hres, sres. Bills ----- A bill is the form used for most legislation, whether permanent or temporary, general or special, public or private. A bill originating in the House of Representatives is designated by the letters “H.R.”, signifying “House of Representatives”, followed by a number that it retains throughout all its parliamentary stages. Bills are presented to the President for action when approved in identical form by both the House of Representatives and the Senate. Joint Resolutions ----------------- Joint resolutions may originate either in the House of Representatives or in the Senate. There is little practical difference between a bill and a joint resolution. Both are subject to the same procedure, except for a joint resolution proposing an amendment to the Constitution. On approval of such a resolution by two-thirds of both the House and Senate, it is sent directly to the Administrator of General Services for submission to the individual states for ratification. It is not presented to the President for approval. A joint resolution originating in the House of Representatives is designated “H.J.Res.” followed by its individual number. Joint resolutions become law in the same manner as bills. Concurrent Resolutions ---------------------- Matters affecting the operations of both the House of Representatives and Senate are usually initiated by means of concurrent resolutions. A concurrent resolution originating in the House of Representatives is designated “H.Con.Res.” followed by its individual number. On approval by both the House of Representatives and Senate, they are signed by the Clerk of the House and the Secretary of the Senate. They are not presented to the President for action. Simple Resolutions ------------------ A matter concerning the operation of either the House of Representatives or Senate alone is initiated by a simple resolution. A resolution affecting the House of Representatives is designated “H.Res.” followed by its number. They are not presented to the President for action.
|
|
121
|
-
| `start_date` | `no` | `string | null` | `-` | Start date of the data, in YYYY-MM-DD format. Filters bills by the last updated date.
|
|
122
|
-
| `end_date` | `no` | `string | null` | `-` | End date of the data, in YYYY-MM-DD format. Filters bills by the last updated date.
|
|
123
|
-
| `limit` | `no` | `integer | null` | `-` | The number of data entries to return. When None, default sets to 100 (max 250). Set to 0 for no limit (must be used with 'bill_type' and 'congress'). Setting to 0 will nullify the start_date, end_date, and offset parameters.
|
|
124
|
-
| `offset` | `no` | `integer | null` | `-` | The starting record returned. 0 is the first record.
|
|
125
|
-
| `sort_by` | `no` | `string` | `desc` | Sort by update date. Default is latest first.
|
|
126
|
-
| `provider` | `no` | `string` | `congress_gov` | - |
|
|
112
|
+
| `congress` | `no` | `integer | null` | `-` | Congress number (e.g., 118 for the 118th Congress). The 103rd Congress started in 1993, which is the earliest date supporting full text versions. Each Congress spans two years, starting in odd-numbered years. |
|
|
113
|
+
| `bill_type` | `no` | `string | null` | `-` | Bill type (e.g., "hr" for House bills). Must be one of: hr, s, hjres, sjres, hconres, sconres, hres, sres. Bills ----- A bill is the form used for most legislation, whether permanent or temporary, general or special, public or private. A bill originating in the House of Representatives is designated by the letters “H.R.”, signifying “House of Representatives”, followed by a number that it retains throughout all its parliamentary stages. Bills are presented to the President for action when approved in identical form by both the House of Representatives and the Senate. Joint Resolutions ----------------- Joint resolutions may originate either in the House of Representatives or in the Senate. There is little practical difference between a bill and a joint resolution. Both are subject to the same procedure, except for a joint resolution proposing an amendment to the Constitution. On approval of such a resolution by two-thirds of both the House and Senate, it is sent directly to the Administrator of General Services for submission to the individual states for ratification. It is not presented to the President for approval. A joint resolution originating in the House of Representatives is designated “H.J.Res.” followed by its individual number. Joint resolutions become law in the same manner as bills. Concurrent Resolutions ---------------------- Matters affecting the operations of both the House of Representatives and Senate are usually initiated by means of concurrent resolutions. A concurrent resolution originating in the House of Representatives is designated “H.Con.Res.” followed by its individual number. On approval by both the House of Representatives and Senate, they are signed by the Clerk of the House and the Secretary of the Senate. They are not presented to the President for action. Simple Resolutions ------------------ A matter concerning the operation of either the House of Representatives or Senate alone is initiated by a simple resolution. A resolution affecting the House of Representatives is designated “H.Res.” followed by its number. They are not presented to the President for action. |
|
|
114
|
+
| `start_date` | `no` | `string | null` | `-` | Start date of the data, in YYYY-MM-DD format. Filters bills by the last updated date. |
|
|
115
|
+
| `end_date` | `no` | `string | null` | `-` | End date of the data, in YYYY-MM-DD format. Filters bills by the last updated date. |
|
|
116
|
+
| `limit` | `no` | `integer | null` | `-` | The number of data entries to return. When None, default sets to 100 (max 250). Set to 0 for no limit (must be used with 'bill_type' and 'congress'). Setting to 0 will nullify the start_date, end_date, and offset parameters. |
|
|
117
|
+
| `offset` | `no` | `integer | null` | `-` | The starting record returned. 0 is the first record. |
|
|
118
|
+
| `sort_by` | `no` | `string` | `desc` | Sort by update date. Default is latest first. |
|
|
@@ -13,7 +13,7 @@ are callable through the DataSDK wrapper.
|
|
|
13
13
|
### `web_search.news`
|
|
14
14
|
|
|
15
15
|
```python
|
|
16
|
-
data.web_search.news(query=..., max_results=10, page=1
|
|
16
|
+
data.web_search.news(query=..., max_results=10, page=1)
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Summary: News
|
|
@@ -23,7 +23,6 @@ Summary: News
|
|
|
23
23
|
| Endpoint ID | `web_search.news` |
|
|
24
24
|
| HTTP | `GET` |
|
|
25
25
|
| Path | `/inner/v1/agent-data/web_search/news` |
|
|
26
|
-
| Default provider | `bravesearch` |
|
|
27
26
|
| SDK | `supported` |
|
|
28
27
|
| Host | `supported` |
|
|
29
28
|
| Notes | - |
|
|
@@ -35,14 +34,13 @@ Summary: News
|
|
|
35
34
|
| `query` | `yes` | `string` | `-` | Search query string. |
|
|
36
35
|
| `max_results` | `no` | `integer` | `10` | Maximum number of news results to return. |
|
|
37
36
|
| `page` | `no` | `integer` | `1` | Page number for pagination, starting at 1. |
|
|
38
|
-
| `provider` | `no` | `string` | `bravesearch` | - |
|
|
39
37
|
|
|
40
38
|
---
|
|
41
39
|
|
|
42
40
|
### `web_search.web`
|
|
43
41
|
|
|
44
42
|
```python
|
|
45
|
-
data.web_search.web(query=..., max_results=10, page=1, backend='auto'
|
|
43
|
+
data.web_search.web(query=..., max_results=10, page=1, backend='auto')
|
|
46
44
|
```
|
|
47
45
|
|
|
48
46
|
Summary: Web
|
|
@@ -52,7 +50,6 @@ Summary: Web
|
|
|
52
50
|
| Endpoint ID | `web_search.web` |
|
|
53
51
|
| HTTP | `GET` |
|
|
54
52
|
| Path | `/inner/v1/agent-data/web_search/web` |
|
|
55
|
-
| Default provider | - |
|
|
56
53
|
| SDK | `supported` |
|
|
57
54
|
| Host | `supported` |
|
|
58
55
|
| Notes | - |
|
|
@@ -64,5 +61,4 @@ Summary: Web
|
|
|
64
61
|
| `query` | `yes` | `string` | `-` | Search query string. |
|
|
65
62
|
| `max_results` | `no` | `integer` | `10` | Maximum number of results to return. |
|
|
66
63
|
| `page` | `no` | `integer` | `1` | Page number for pagination, starting at 1. |
|
|
67
|
-
| `backend` | `no` | `string` | `auto` | enum: auto, duckduckgo, google, bing, brave, yandex, yahoo, wikipedia, grokipedia, mojeek Search engine backend. 'auto' queries multiple engines with automatic fallback for resilience.
|
|
68
|
-
| `provider` | `yes` | `string` | `-` | enum: bravesearch, ddgs |
|
|
64
|
+
| `backend` | `no` | `string` | `auto` | enum: auto, duckduckgo, google, bing, brave, yandex, yahoo, wikipedia, grokipedia, mojeek Search engine backend. 'auto' queries multiple engines with automatic fallback for resilience. |
|