@agentutility/mcp-edge-finance 0.1.8 → 0.18.1
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/README.md +83 -15
- package/dist/tools.generated.js +3095 -360
- package/package.json +1 -1
package/dist/tools.generated.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/** Auto-generated by scripts/generate-mcp-clusters.mjs. Do not edit by hand. */
|
|
2
2
|
export const CLUSTER_SLUG = "edge-finance";
|
|
3
|
-
export const VERSION = "0.1
|
|
3
|
+
export const VERSION = "0.18.1";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "13f-deltas",
|
|
7
7
|
"http_name": "13f-deltas",
|
|
8
|
-
"description": "(0.05 USDC/call) 13F-HR position-
|
|
8
|
+
"description": "(0.05 USDC/call) 13F-HR position deltas / institutional holdings change tracker / hedge-fund quarterly trade detector / Berkshire + Bridgewater + Citadel + Renaissance position-change feed / 13F diff / SEC institutional manager portfolio change / 'what did Buffett buy this quarter' / EDGAR 13F-HR delta. Diffs the two most recent 13F-HR filings for an institutional manager (by CIK) and returns added (new positions), exited (sold completely), increased (size up), and reduced (size down) buckets with per-position share deltas, dollar deltas, and pct change. Strictly SEC-public 13F-HR data.",
|
|
9
9
|
"method": "POST",
|
|
10
10
|
"input_schema": {
|
|
11
11
|
"type": "object",
|
|
@@ -29,621 +29,3356 @@ export const TOOLS = [
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
"name": "
|
|
33
|
-
"http_name": "
|
|
34
|
-
"description": "(0.
|
|
32
|
+
"name": "accounts-receivable-aging-score",
|
|
33
|
+
"http_name": "accounts-receivable-aging-score",
|
|
34
|
+
"description": "(0.01 USDC/call) Accounts receivable aging score API / AR portfolio health scorer / DSO + delinquency + bad-debt analysis / receivables quality score. Scores an AR book on current share, severe (90+) delinquency, mid-bucket delinquency, DSO, and bad debt, returning a weighted score, grade, drivers, and recommendation.",
|
|
35
35
|
"method": "POST",
|
|
36
36
|
"input_schema": {
|
|
37
37
|
"type": "object",
|
|
38
38
|
"properties": {
|
|
39
|
-
"
|
|
40
|
-
"type": "
|
|
41
|
-
"
|
|
42
|
-
"type": "string"
|
|
43
|
-
},
|
|
44
|
-
"description": "Array of BLS series IDs to fetch (e.g. occupational employment, wage, or growth series codes)."
|
|
39
|
+
"current_pct": {
|
|
40
|
+
"type": "number",
|
|
41
|
+
"description": "Percent of AR that is current (0-30 days)."
|
|
45
42
|
},
|
|
46
|
-
"
|
|
47
|
-
"type": "
|
|
48
|
-
"description": "
|
|
43
|
+
"past_due_30_60_pct": {
|
|
44
|
+
"type": "number",
|
|
45
|
+
"description": "Percent 30-60 days past due. Optional."
|
|
49
46
|
},
|
|
50
|
-
"
|
|
51
|
-
"type": "
|
|
52
|
-
"description": "
|
|
47
|
+
"past_due_60_90_pct": {
|
|
48
|
+
"type": "number",
|
|
49
|
+
"description": "Percent 60-90 days past due. Optional."
|
|
53
50
|
},
|
|
54
|
-
"
|
|
55
|
-
"type": "
|
|
56
|
-
"description": "
|
|
51
|
+
"past_due_90_plus_pct": {
|
|
52
|
+
"type": "number",
|
|
53
|
+
"description": "Percent 90+ days past due."
|
|
54
|
+
},
|
|
55
|
+
"dso_days": {
|
|
56
|
+
"type": "number",
|
|
57
|
+
"description": "Days sales outstanding. Optional, default 45."
|
|
58
|
+
},
|
|
59
|
+
"bad_debt_pct": {
|
|
60
|
+
"type": "number",
|
|
61
|
+
"description": "Bad debt / write-off percent. Optional, default 2."
|
|
57
62
|
}
|
|
58
63
|
},
|
|
59
64
|
"required": [
|
|
60
|
-
"
|
|
65
|
+
"current_pct",
|
|
66
|
+
"past_due_90_plus_pct"
|
|
61
67
|
]
|
|
62
68
|
}
|
|
63
69
|
},
|
|
64
70
|
{
|
|
65
|
-
"name": "
|
|
66
|
-
"http_name": "
|
|
67
|
-
"description": "(0.
|
|
71
|
+
"name": "amortization-schedule",
|
|
72
|
+
"http_name": "amortization-schedule",
|
|
73
|
+
"description": "(0.01 USDC/call) Amortization schedule API / loan payment schedule / debt amortization calculator. Same backend as loan-amortization-calculator, focused on scheduled payment, payoff months, total paid, and interest saved.",
|
|
68
74
|
"method": "POST",
|
|
69
75
|
"input_schema": {
|
|
70
76
|
"type": "object",
|
|
71
77
|
"properties": {
|
|
72
|
-
"
|
|
73
|
-
"type": "
|
|
74
|
-
"description": "
|
|
78
|
+
"principal": {
|
|
79
|
+
"type": "number",
|
|
80
|
+
"description": "Initial loan principal."
|
|
75
81
|
},
|
|
76
|
-
"
|
|
77
|
-
"type": "
|
|
78
|
-
"description": "
|
|
82
|
+
"annual_rate": {
|
|
83
|
+
"type": "number",
|
|
84
|
+
"description": "Annual interest rate as percent."
|
|
79
85
|
},
|
|
80
|
-
"
|
|
86
|
+
"term_months": {
|
|
81
87
|
"type": "number",
|
|
82
|
-
"description": "
|
|
88
|
+
"description": "Loan term in months."
|
|
83
89
|
},
|
|
84
|
-
"
|
|
85
|
-
"type": "
|
|
86
|
-
"description": "
|
|
90
|
+
"term_years": {
|
|
91
|
+
"type": "number",
|
|
92
|
+
"description": "Alternative loan term in years when term_months is omitted."
|
|
93
|
+
},
|
|
94
|
+
"extra_monthly_payment": {
|
|
95
|
+
"type": "number",
|
|
96
|
+
"description": "Optional extra monthly principal payment. Default 0."
|
|
87
97
|
}
|
|
88
|
-
}
|
|
98
|
+
},
|
|
99
|
+
"required": [
|
|
100
|
+
"principal",
|
|
101
|
+
"annual_rate"
|
|
102
|
+
]
|
|
89
103
|
}
|
|
90
104
|
},
|
|
91
105
|
{
|
|
92
|
-
"name": "
|
|
93
|
-
"http_name": "
|
|
94
|
-
"description": "(0.
|
|
106
|
+
"name": "asset-based-lending-score",
|
|
107
|
+
"http_name": "asset-based-lending-score",
|
|
108
|
+
"description": "(0.01 USDC/call) Asset based lending score API / ABL facility risk scorer / collateral coverage + advance-rate + monitoring analysis. Scores an ABL facility on collateral coverage, collateral quality, advance discipline, monitoring cadence, and dilution, returning a weighted score, grade, drivers, and recommendation.",
|
|
95
109
|
"method": "POST",
|
|
96
110
|
"input_schema": {
|
|
97
111
|
"type": "object",
|
|
98
112
|
"properties": {
|
|
99
|
-
"
|
|
100
|
-
"type": "
|
|
101
|
-
"description": "
|
|
113
|
+
"eligible_collateral_value": {
|
|
114
|
+
"type": "number",
|
|
115
|
+
"description": "Eligible collateral value (USD)."
|
|
102
116
|
},
|
|
103
|
-
"
|
|
104
|
-
"type": "
|
|
105
|
-
"description": "
|
|
117
|
+
"loan_amount": {
|
|
118
|
+
"type": "number",
|
|
119
|
+
"description": "Loan / facility amount (USD)."
|
|
106
120
|
},
|
|
107
|
-
"
|
|
108
|
-
"type": "
|
|
109
|
-
"description": "
|
|
121
|
+
"advance_rate_pct": {
|
|
122
|
+
"type": "number",
|
|
123
|
+
"description": "Advance rate against eligible collateral percent."
|
|
110
124
|
},
|
|
111
|
-
"
|
|
112
|
-
"type": "
|
|
113
|
-
"description": "
|
|
125
|
+
"collateral_quality_score": {
|
|
126
|
+
"type": "number",
|
|
127
|
+
"description": "Collateral liquidity/quality, 0-100."
|
|
128
|
+
},
|
|
129
|
+
"monitoring_frequency_per_year": {
|
|
130
|
+
"type": "number",
|
|
131
|
+
"description": "Collateral exams per year. Optional, default 4."
|
|
132
|
+
},
|
|
133
|
+
"dilution_pct": {
|
|
134
|
+
"type": "number",
|
|
135
|
+
"description": "Receivables dilution percent. Optional, default 3."
|
|
114
136
|
}
|
|
115
137
|
},
|
|
116
138
|
"required": [
|
|
117
|
-
"
|
|
139
|
+
"eligible_collateral_value",
|
|
140
|
+
"loan_amount",
|
|
141
|
+
"advance_rate_pct",
|
|
142
|
+
"collateral_quality_score"
|
|
118
143
|
]
|
|
119
144
|
}
|
|
120
145
|
},
|
|
121
146
|
{
|
|
122
|
-
"name": "
|
|
123
|
-
"http_name": "
|
|
124
|
-
"description": "(0.
|
|
147
|
+
"name": "blended-finance-score",
|
|
148
|
+
"http_name": "blended-finance-score",
|
|
149
|
+
"description": "(0.01 USDC/call) Blended finance score API / concessional capital efficiency / private capital mobilization / first-loss impact finance calculator. Scores impact quality, private leverage ratio, concessional capital share, first-loss risk cushion, and governance. Returns 0-100 structure score, grade, recommendation, metrics, and drivers.",
|
|
125
150
|
"method": "POST",
|
|
126
151
|
"input_schema": {
|
|
127
152
|
"type": "object",
|
|
128
153
|
"properties": {
|
|
129
|
-
"
|
|
130
|
-
"type": "
|
|
131
|
-
"description": "
|
|
154
|
+
"concessional_capital_pct": {
|
|
155
|
+
"type": "number",
|
|
156
|
+
"description": "Percent of capital stack that is concessional."
|
|
132
157
|
},
|
|
133
|
-
"
|
|
134
|
-
"type": "
|
|
135
|
-
"description": "
|
|
158
|
+
"private_leverage_ratio": {
|
|
159
|
+
"type": "number",
|
|
160
|
+
"description": "Private capital mobilized per $1 concessional capital."
|
|
136
161
|
},
|
|
137
|
-
"
|
|
138
|
-
"type": "
|
|
139
|
-
"description": "
|
|
162
|
+
"impact_score": {
|
|
163
|
+
"type": "number",
|
|
164
|
+
"description": "0-100 impact quality and additionality score."
|
|
140
165
|
},
|
|
141
|
-
"
|
|
142
|
-
"type": "
|
|
143
|
-
"description": "
|
|
166
|
+
"first_loss_coverage_pct": {
|
|
167
|
+
"type": "number",
|
|
168
|
+
"description": "First-loss protection as percent of senior exposure. Default 0."
|
|
169
|
+
},
|
|
170
|
+
"governance_score": {
|
|
171
|
+
"type": "number",
|
|
172
|
+
"description": "0-100 reporting, covenants, and governance score. Default 70."
|
|
144
173
|
}
|
|
145
174
|
},
|
|
146
175
|
"required": [
|
|
147
|
-
"
|
|
176
|
+
"concessional_capital_pct",
|
|
177
|
+
"private_leverage_ratio",
|
|
178
|
+
"impact_score"
|
|
148
179
|
]
|
|
149
180
|
}
|
|
150
181
|
},
|
|
151
182
|
{
|
|
152
|
-
"name": "
|
|
153
|
-
"http_name": "
|
|
154
|
-
"description": "(0.
|
|
183
|
+
"name": "blended-finance-score-api",
|
|
184
|
+
"http_name": "blended-finance-score-api",
|
|
185
|
+
"description": "(0.01 USDC/call) Blended finance score API / concessional capital leverage scoring / impact finance risk score. Same model as blended-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
155
186
|
"method": "POST",
|
|
156
187
|
"input_schema": {
|
|
157
188
|
"type": "object",
|
|
158
189
|
"properties": {
|
|
159
|
-
"
|
|
160
|
-
"type": "
|
|
161
|
-
"description": "
|
|
190
|
+
"concessional_capital_pct": {
|
|
191
|
+
"type": "number",
|
|
192
|
+
"description": "Percent of capital stack that is concessional."
|
|
162
193
|
},
|
|
163
|
-
"
|
|
164
|
-
"
|
|
194
|
+
"private_leverage_ratio": {
|
|
195
|
+
"type": "number",
|
|
196
|
+
"description": "Private capital mobilized per $1 concessional capital."
|
|
165
197
|
},
|
|
166
|
-
"
|
|
167
|
-
"type": "
|
|
168
|
-
"description": "
|
|
198
|
+
"impact_score": {
|
|
199
|
+
"type": "number",
|
|
200
|
+
"description": "0-100 impact quality and additionality score."
|
|
169
201
|
},
|
|
170
|
-
"
|
|
202
|
+
"first_loss_coverage_pct": {
|
|
171
203
|
"type": "number",
|
|
172
|
-
"description": "
|
|
204
|
+
"description": "First-loss protection as percent of senior exposure. Default 0."
|
|
205
|
+
},
|
|
206
|
+
"governance_score": {
|
|
207
|
+
"type": "number",
|
|
208
|
+
"description": "0-100 reporting, covenants, and governance score. Default 70."
|
|
173
209
|
}
|
|
174
|
-
}
|
|
210
|
+
},
|
|
211
|
+
"required": [
|
|
212
|
+
"concessional_capital_pct",
|
|
213
|
+
"private_leverage_ratio",
|
|
214
|
+
"impact_score"
|
|
215
|
+
]
|
|
175
216
|
}
|
|
176
217
|
},
|
|
177
218
|
{
|
|
178
|
-
"name": "
|
|
179
|
-
"http_name": "
|
|
180
|
-
"description": "(0.
|
|
219
|
+
"name": "bls-occupational-stats",
|
|
220
|
+
"http_name": "bls-occupational-stats",
|
|
221
|
+
"description": "(0.02 USDC/call) BLS Public Data API — wages, employment levels, growth by series ID. Federal public, free. Optional BLS_API_KEY for higher rate-limits.",
|
|
181
222
|
"method": "POST",
|
|
182
223
|
"input_schema": {
|
|
183
224
|
"type": "object",
|
|
184
225
|
"properties": {
|
|
185
|
-
"
|
|
186
|
-
"type": "
|
|
187
|
-
"
|
|
226
|
+
"series_ids": {
|
|
227
|
+
"type": "array",
|
|
228
|
+
"items": {
|
|
229
|
+
"type": "string"
|
|
230
|
+
}
|
|
188
231
|
},
|
|
189
|
-
"
|
|
190
|
-
"type": "string"
|
|
191
|
-
"description": "Free-text filter applied to meeting title/committee (case-insensitive substring). Examples: 'vaccine', 'oncology', 'cardiovascular'."
|
|
232
|
+
"start_year": {
|
|
233
|
+
"type": "string"
|
|
192
234
|
},
|
|
193
|
-
"
|
|
194
|
-
"type": "
|
|
195
|
-
|
|
235
|
+
"end_year": {
|
|
236
|
+
"type": "string"
|
|
237
|
+
},
|
|
238
|
+
"include_calculations": {
|
|
239
|
+
"type": "boolean"
|
|
196
240
|
}
|
|
197
|
-
}
|
|
241
|
+
},
|
|
242
|
+
"required": [
|
|
243
|
+
"series_ids"
|
|
244
|
+
]
|
|
198
245
|
}
|
|
199
246
|
},
|
|
200
247
|
{
|
|
201
|
-
"name": "
|
|
202
|
-
"http_name": "
|
|
203
|
-
"description": "(0.
|
|
248
|
+
"name": "break-even-calculator",
|
|
249
|
+
"http_name": "break-even-calculator",
|
|
250
|
+
"description": "(0.01 USDC/call) Break-even calculator API / contribution margin calculator / unit economics break-even units / fixed cost payback. Computes contribution margin per unit, margin percent, break-even units, expected profit when expected volume is provided, score, drivers, and recommendation.",
|
|
204
251
|
"method": "POST",
|
|
205
252
|
"input_schema": {
|
|
206
253
|
"type": "object",
|
|
207
254
|
"properties": {
|
|
208
|
-
"
|
|
209
|
-
"type": "string",
|
|
210
|
-
"description": "Donor name in 'LAST FIRST' format (FEC convention, e.g. 'SMITH JOHN'). Case-insensitive."
|
|
211
|
-
},
|
|
212
|
-
"committee_id": {
|
|
213
|
-
"type": "string",
|
|
214
|
-
"description": "FEC committee id (recipient), e.g. 'C00401224' for Obama for America."
|
|
215
|
-
},
|
|
216
|
-
"candidate_id": {
|
|
217
|
-
"type": "string",
|
|
218
|
-
"description": "FEC candidate id (recipient candidate), e.g. 'P80003338'."
|
|
219
|
-
},
|
|
220
|
-
"cycle": {
|
|
255
|
+
"fixed_costs": {
|
|
221
256
|
"type": "number",
|
|
222
|
-
"description": "
|
|
223
|
-
},
|
|
224
|
-
"state": {
|
|
225
|
-
"type": "string",
|
|
226
|
-
"description": "Donor state, 2-letter code (e.g. 'CA', 'NY')."
|
|
257
|
+
"description": "Fixed costs to recover."
|
|
227
258
|
},
|
|
228
|
-
"
|
|
259
|
+
"unit_price": {
|
|
229
260
|
"type": "number",
|
|
230
|
-
"description": "
|
|
261
|
+
"description": "Revenue per unit."
|
|
231
262
|
},
|
|
232
|
-
"
|
|
263
|
+
"variable_cost_per_unit": {
|
|
233
264
|
"type": "number",
|
|
234
|
-
"description": "
|
|
265
|
+
"description": "Variable cost per unit."
|
|
235
266
|
},
|
|
236
|
-
"
|
|
267
|
+
"expected_units": {
|
|
237
268
|
"type": "number",
|
|
238
|
-
"description": "
|
|
269
|
+
"description": "Optional expected unit volume."
|
|
239
270
|
}
|
|
240
|
-
}
|
|
271
|
+
},
|
|
272
|
+
"required": [
|
|
273
|
+
"fixed_costs",
|
|
274
|
+
"unit_price",
|
|
275
|
+
"variable_cost_per_unit"
|
|
276
|
+
]
|
|
241
277
|
}
|
|
242
278
|
},
|
|
243
279
|
{
|
|
244
|
-
"name": "
|
|
245
|
-
"http_name": "
|
|
246
|
-
"description": "(0.01 USDC/call)
|
|
280
|
+
"name": "cash-conversion-cycle-calculator",
|
|
281
|
+
"http_name": "cash-conversion-cycle-calculator",
|
|
282
|
+
"description": "(0.01 USDC/call) Cash conversion cycle calculator / working capital optimization API / DSO DIO DPO analysis. Same calculator as working-capital-cycle.",
|
|
247
283
|
"method": "POST",
|
|
248
284
|
"input_schema": {
|
|
249
285
|
"type": "object",
|
|
250
286
|
"properties": {
|
|
251
|
-
"
|
|
252
|
-
"type": "
|
|
253
|
-
"description": "
|
|
287
|
+
"annual_revenue": {
|
|
288
|
+
"type": "number",
|
|
289
|
+
"description": "Annual revenue in dollars."
|
|
254
290
|
},
|
|
255
|
-
"
|
|
256
|
-
"type": "
|
|
257
|
-
"description": "
|
|
291
|
+
"annual_cogs": {
|
|
292
|
+
"type": "number",
|
|
293
|
+
"description": "Annual cost of goods sold. Defaults to 65% of annual_revenue when omitted."
|
|
258
294
|
},
|
|
259
|
-
"
|
|
295
|
+
"accounts_receivable": {
|
|
260
296
|
"type": "number",
|
|
261
|
-
"description": "
|
|
297
|
+
"description": "Current accounts receivable balance."
|
|
262
298
|
},
|
|
263
|
-
"
|
|
264
|
-
"type": "
|
|
265
|
-
"description": "
|
|
299
|
+
"inventory": {
|
|
300
|
+
"type": "number",
|
|
301
|
+
"description": "Current inventory balance."
|
|
302
|
+
},
|
|
303
|
+
"accounts_payable": {
|
|
304
|
+
"type": "number",
|
|
305
|
+
"description": "Current accounts payable balance."
|
|
306
|
+
},
|
|
307
|
+
"target_cash_conversion_days": {
|
|
308
|
+
"type": "number",
|
|
309
|
+
"description": "Target cash conversion cycle days. Default 45."
|
|
266
310
|
}
|
|
267
|
-
}
|
|
311
|
+
},
|
|
312
|
+
"required": [
|
|
313
|
+
"annual_revenue",
|
|
314
|
+
"accounts_receivable",
|
|
315
|
+
"inventory",
|
|
316
|
+
"accounts_payable"
|
|
317
|
+
]
|
|
268
318
|
}
|
|
269
319
|
},
|
|
270
320
|
{
|
|
271
|
-
"name": "
|
|
272
|
-
"http_name": "
|
|
273
|
-
"description": "(0.01 USDC/call)
|
|
321
|
+
"name": "cash-runway-calculator",
|
|
322
|
+
"http_name": "cash-runway-calculator",
|
|
323
|
+
"description": "(0.01 USDC/call) Cash runway calculator / startup burn runway API / founder finance planning. Same backend as startup-runway-calculator, focused on net monthly burn, static runway, dynamic runway, and burn cut needed for target runway.",
|
|
274
324
|
"method": "POST",
|
|
275
325
|
"input_schema": {
|
|
276
326
|
"type": "object",
|
|
277
327
|
"properties": {
|
|
278
|
-
"
|
|
279
|
-
"type": "
|
|
280
|
-
"description": "
|
|
328
|
+
"cash_balance": {
|
|
329
|
+
"type": "number",
|
|
330
|
+
"description": "Current cash balance."
|
|
281
331
|
},
|
|
282
|
-
"
|
|
283
|
-
"type": "
|
|
284
|
-
"description": "
|
|
332
|
+
"monthly_burn": {
|
|
333
|
+
"type": "number",
|
|
334
|
+
"description": "Monthly operating cash burn before revenue offset."
|
|
285
335
|
},
|
|
286
|
-
"
|
|
336
|
+
"monthly_revenue": {
|
|
287
337
|
"type": "number",
|
|
288
|
-
"description": "
|
|
338
|
+
"description": "Current monthly revenue. Default 0."
|
|
289
339
|
},
|
|
290
|
-
"
|
|
291
|
-
"type": "
|
|
292
|
-
"description": "
|
|
340
|
+
"monthly_revenue_growth_pct": {
|
|
341
|
+
"type": "number",
|
|
342
|
+
"description": "Expected monthly revenue growth percent. Default 0."
|
|
343
|
+
},
|
|
344
|
+
"target_runway_months": {
|
|
345
|
+
"type": "number",
|
|
346
|
+
"description": "Target runway months. Default 18."
|
|
293
347
|
}
|
|
294
|
-
}
|
|
348
|
+
},
|
|
349
|
+
"required": [
|
|
350
|
+
"cash_balance",
|
|
351
|
+
"monthly_burn"
|
|
352
|
+
]
|
|
295
353
|
}
|
|
296
354
|
},
|
|
297
355
|
{
|
|
298
|
-
"name": "
|
|
299
|
-
"http_name": "
|
|
300
|
-
"description": "(0.
|
|
356
|
+
"name": "commercial-real-estate-loan-score",
|
|
357
|
+
"http_name": "commercial-real-estate-loan-score",
|
|
358
|
+
"description": "(0.01 USDC/call) Commercial real estate loan score API / CRE underwriting scorer / DSCR + LTV + debt-yield + occupancy analysis / commercial mortgage risk score. Scores a CRE loan on loan-to-value, debt service coverage, debt yield, occupancy, and cap rate, returning a weighted score, grade, drivers, and recommendation.",
|
|
301
359
|
"method": "POST",
|
|
302
360
|
"input_schema": {
|
|
303
361
|
"type": "object",
|
|
304
362
|
"properties": {
|
|
305
|
-
"
|
|
306
|
-
"type": "
|
|
307
|
-
"description": "
|
|
308
|
-
},
|
|
309
|
-
"series_ticker": {
|
|
310
|
-
"type": "string",
|
|
311
|
-
"description": "Filter by series (e.g. 'KXELONMARS')."
|
|
363
|
+
"property_value": {
|
|
364
|
+
"type": "number",
|
|
365
|
+
"description": "Appraised property value (USD)."
|
|
312
366
|
},
|
|
313
|
-
"
|
|
314
|
-
"type": "
|
|
315
|
-
"description": "
|
|
367
|
+
"loan_amount": {
|
|
368
|
+
"type": "number",
|
|
369
|
+
"description": "Requested loan amount (USD)."
|
|
316
370
|
},
|
|
317
|
-
"
|
|
318
|
-
"type": "
|
|
319
|
-
"
|
|
320
|
-
"open",
|
|
321
|
-
"closed",
|
|
322
|
-
"settled",
|
|
323
|
-
"active"
|
|
324
|
-
],
|
|
325
|
-
"description": "Default 'open'."
|
|
371
|
+
"noi": {
|
|
372
|
+
"type": "number",
|
|
373
|
+
"description": "Annual net operating income (USD)."
|
|
326
374
|
},
|
|
327
|
-
"
|
|
375
|
+
"debt_service_annual": {
|
|
328
376
|
"type": "number",
|
|
329
|
-
"description": "
|
|
377
|
+
"description": "Annual debt service (USD)."
|
|
330
378
|
},
|
|
331
|
-
"
|
|
332
|
-
"type": "
|
|
333
|
-
"description": "
|
|
379
|
+
"occupancy_pct": {
|
|
380
|
+
"type": "number",
|
|
381
|
+
"description": "Occupancy percent. Optional, default 92."
|
|
334
382
|
},
|
|
335
|
-
"
|
|
383
|
+
"cap_rate_pct": {
|
|
336
384
|
"type": "number",
|
|
337
|
-
"description": "
|
|
385
|
+
"description": "Capitalization rate percent. Optional."
|
|
338
386
|
}
|
|
339
|
-
}
|
|
387
|
+
},
|
|
388
|
+
"required": [
|
|
389
|
+
"property_value",
|
|
390
|
+
"loan_amount",
|
|
391
|
+
"noi",
|
|
392
|
+
"debt_service_annual"
|
|
393
|
+
]
|
|
340
394
|
}
|
|
341
395
|
},
|
|
342
396
|
{
|
|
343
|
-
"name": "
|
|
344
|
-
"http_name": "
|
|
345
|
-
"description": "(0.
|
|
397
|
+
"name": "contribution-margin-calculator",
|
|
398
|
+
"http_name": "contribution-margin-calculator",
|
|
399
|
+
"description": "(0.01 USDC/call) Contribution margin calculator / break-even units API / fixed-cost recovery calculator. Same backend as break-even-calculator, exposed for product pricing and business-plan agents.",
|
|
346
400
|
"method": "POST",
|
|
347
401
|
"input_schema": {
|
|
348
402
|
"type": "object",
|
|
349
403
|
"properties": {
|
|
350
|
-
"
|
|
351
|
-
"type": "
|
|
352
|
-
"description": "
|
|
353
|
-
},
|
|
354
|
-
"inventor": {
|
|
355
|
-
"type": "string",
|
|
356
|
-
"description": "Inventor last name filter. Optional."
|
|
357
|
-
},
|
|
358
|
-
"assignee": {
|
|
359
|
-
"type": "string",
|
|
360
|
-
"description": "Assignee/owner name filter. Optional."
|
|
404
|
+
"fixed_costs": {
|
|
405
|
+
"type": "number",
|
|
406
|
+
"description": "Fixed costs to recover."
|
|
361
407
|
},
|
|
362
|
-
"
|
|
363
|
-
"type": "
|
|
364
|
-
"description": "
|
|
408
|
+
"unit_price": {
|
|
409
|
+
"type": "number",
|
|
410
|
+
"description": "Revenue per unit."
|
|
365
411
|
},
|
|
366
|
-
"
|
|
367
|
-
"type": "
|
|
368
|
-
"description": "
|
|
412
|
+
"variable_cost_per_unit": {
|
|
413
|
+
"type": "number",
|
|
414
|
+
"description": "Variable cost per unit."
|
|
369
415
|
},
|
|
370
|
-
"
|
|
371
|
-
"type": "string",
|
|
372
|
-
"description": "Filing-date ceiling (YYYY-MM-DD). Optional."
|
|
373
|
-
},
|
|
374
|
-
"limit": {
|
|
416
|
+
"expected_units": {
|
|
375
417
|
"type": "number",
|
|
376
|
-
"description": "
|
|
377
|
-
},
|
|
378
|
-
"summarize": {
|
|
379
|
-
"type": "boolean",
|
|
380
|
-
"description": "If true, attach a Venice plain-English summary to the top result."
|
|
418
|
+
"description": "Optional expected unit volume."
|
|
381
419
|
}
|
|
382
420
|
},
|
|
383
421
|
"required": [
|
|
384
|
-
"
|
|
422
|
+
"fixed_costs",
|
|
423
|
+
"unit_price",
|
|
424
|
+
"variable_cost_per_unit"
|
|
385
425
|
]
|
|
386
426
|
}
|
|
387
427
|
},
|
|
388
428
|
{
|
|
389
|
-
"name": "
|
|
390
|
-
"http_name": "
|
|
391
|
-
"description": "(0.
|
|
429
|
+
"name": "dcf-valuation-calculator",
|
|
430
|
+
"http_name": "dcf-valuation-calculator",
|
|
431
|
+
"description": "(0.01 USDC/call) DCF valuation calculator API / discounted cash flow / enterprise value / equity value / value per share calculator. Discounts explicit cash flows, optional Gordon-growth or terminal-multiple terminal value, net debt, and share count into enterprise value, equity value, value per share, score, drivers, and recommendation.",
|
|
392
432
|
"method": "POST",
|
|
393
433
|
"input_schema": {
|
|
394
434
|
"type": "object",
|
|
395
435
|
"properties": {
|
|
396
|
-
"
|
|
436
|
+
"cash_flows": {
|
|
437
|
+
"type": "array",
|
|
438
|
+
"items": {
|
|
439
|
+
"type": "number"
|
|
440
|
+
},
|
|
441
|
+
"description": "Forecast free cash flows by period, max 50 periods."
|
|
442
|
+
},
|
|
443
|
+
"discount_rate_pct": {
|
|
397
444
|
"type": "number",
|
|
398
|
-
"description": "
|
|
445
|
+
"description": "Discount rate percent."
|
|
399
446
|
},
|
|
400
|
-
"
|
|
447
|
+
"terminal_growth_pct": {
|
|
401
448
|
"type": "number",
|
|
402
|
-
"description": "
|
|
449
|
+
"description": "Optional Gordon-growth terminal growth percent; must be below discount rate."
|
|
403
450
|
},
|
|
404
|
-
"
|
|
451
|
+
"terminal_multiple": {
|
|
405
452
|
"type": "number",
|
|
406
|
-
"description": "
|
|
453
|
+
"description": "Optional terminal multiple on final forecast cash flow."
|
|
407
454
|
},
|
|
408
|
-
"
|
|
409
|
-
"type": "
|
|
410
|
-
"description": "
|
|
455
|
+
"net_debt": {
|
|
456
|
+
"type": "number",
|
|
457
|
+
"description": "Net debt subtracted from enterprise value. Negative means net cash. Default 0."
|
|
458
|
+
},
|
|
459
|
+
"shares_outstanding": {
|
|
460
|
+
"type": "number",
|
|
461
|
+
"description": "Optional shares outstanding for value per share."
|
|
411
462
|
}
|
|
412
|
-
}
|
|
463
|
+
},
|
|
464
|
+
"required": [
|
|
465
|
+
"cash_flows",
|
|
466
|
+
"discount_rate_pct"
|
|
467
|
+
]
|
|
413
468
|
}
|
|
414
469
|
},
|
|
415
470
|
{
|
|
416
|
-
"name": "
|
|
417
|
-
"http_name": "
|
|
418
|
-
"description": "(0.
|
|
471
|
+
"name": "debt-payoff-calculator",
|
|
472
|
+
"http_name": "debt-payoff-calculator",
|
|
473
|
+
"description": "(0.01 USDC/call) Debt payoff calculator / extra payment payoff API / interest savings calculator. Same backend as loan-amortization-calculator, exposed for agents comparing loan payoff months, total interest, and extra-principal scenarios.",
|
|
419
474
|
"method": "POST",
|
|
420
475
|
"input_schema": {
|
|
421
476
|
"type": "object",
|
|
422
477
|
"properties": {
|
|
423
|
-
"
|
|
424
|
-
"type": "
|
|
425
|
-
"
|
|
426
|
-
"profit",
|
|
427
|
-
"volume"
|
|
428
|
-
],
|
|
429
|
-
"description": "Default 'profit'."
|
|
478
|
+
"principal": {
|
|
479
|
+
"type": "number",
|
|
480
|
+
"description": "Initial loan principal."
|
|
430
481
|
},
|
|
431
|
-
"
|
|
432
|
-
"type": "
|
|
433
|
-
"
|
|
434
|
-
"1d",
|
|
435
|
-
"1w",
|
|
436
|
-
"1m",
|
|
437
|
-
"all"
|
|
438
|
-
],
|
|
439
|
-
"description": "Default '1d'."
|
|
482
|
+
"annual_rate": {
|
|
483
|
+
"type": "number",
|
|
484
|
+
"description": "Annual interest rate as percent."
|
|
440
485
|
},
|
|
441
|
-
"
|
|
486
|
+
"term_months": {
|
|
442
487
|
"type": "number",
|
|
443
|
-
"description": "
|
|
488
|
+
"description": "Loan term in months."
|
|
489
|
+
},
|
|
490
|
+
"term_years": {
|
|
491
|
+
"type": "number",
|
|
492
|
+
"description": "Alternative loan term in years when term_months is omitted."
|
|
493
|
+
},
|
|
494
|
+
"extra_monthly_payment": {
|
|
495
|
+
"type": "number",
|
|
496
|
+
"description": "Optional extra monthly principal payment. Default 0."
|
|
444
497
|
}
|
|
445
|
-
}
|
|
498
|
+
},
|
|
499
|
+
"required": [
|
|
500
|
+
"principal",
|
|
501
|
+
"annual_rate"
|
|
502
|
+
]
|
|
446
503
|
}
|
|
447
504
|
},
|
|
448
505
|
{
|
|
449
|
-
"name": "
|
|
450
|
-
"http_name": "
|
|
451
|
-
"description": "(0.
|
|
506
|
+
"name": "discounted-cash-flow-calculator",
|
|
507
|
+
"http_name": "discounted-cash-flow-calculator",
|
|
508
|
+
"description": "(0.01 USDC/call) Discounted cash flow calculator / DCF valuation API / enterprise value and equity value calculator. Same backend as dcf-valuation-calculator, exposed under the full buyer keyword for valuation workflows.",
|
|
452
509
|
"method": "POST",
|
|
453
510
|
"input_schema": {
|
|
454
511
|
"type": "object",
|
|
455
512
|
"properties": {
|
|
456
|
-
"
|
|
457
|
-
"type": "
|
|
458
|
-
"
|
|
513
|
+
"cash_flows": {
|
|
514
|
+
"type": "array",
|
|
515
|
+
"items": {
|
|
516
|
+
"type": "number"
|
|
517
|
+
},
|
|
518
|
+
"description": "Forecast free cash flows by period, max 50 periods."
|
|
459
519
|
},
|
|
460
|
-
"
|
|
461
|
-
"type": "
|
|
462
|
-
"description": "
|
|
520
|
+
"discount_rate_pct": {
|
|
521
|
+
"type": "number",
|
|
522
|
+
"description": "Discount rate percent."
|
|
463
523
|
},
|
|
464
|
-
"
|
|
465
|
-
"type": "
|
|
466
|
-
"description": "
|
|
524
|
+
"terminal_growth_pct": {
|
|
525
|
+
"type": "number",
|
|
526
|
+
"description": "Optional Gordon-growth terminal growth percent; must be below discount rate."
|
|
467
527
|
},
|
|
468
|
-
"
|
|
469
|
-
"type": "
|
|
470
|
-
"description": "
|
|
528
|
+
"terminal_multiple": {
|
|
529
|
+
"type": "number",
|
|
530
|
+
"description": "Optional terminal multiple on final forecast cash flow."
|
|
471
531
|
},
|
|
472
|
-
"
|
|
473
|
-
"type": "
|
|
474
|
-
"description": "
|
|
532
|
+
"net_debt": {
|
|
533
|
+
"type": "number",
|
|
534
|
+
"description": "Net debt subtracted from enterprise value. Negative means net cash. Default 0."
|
|
475
535
|
},
|
|
476
|
-
"
|
|
536
|
+
"shares_outstanding": {
|
|
477
537
|
"type": "number",
|
|
478
|
-
"description": "
|
|
538
|
+
"description": "Optional shares outstanding for value per share."
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"required": [
|
|
542
|
+
"cash_flows",
|
|
543
|
+
"discount_rate_pct"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"name": "dso-dio-dpo-calculator",
|
|
549
|
+
"http_name": "dso-dio-dpo-calculator",
|
|
550
|
+
"description": "(0.01 USDC/call) DSO DIO DPO calculator / working capital days API / cash conversion cycle components. Same backend as working-capital-cycle, focused on receivables, inventory, payables, cash tied up, and release opportunity.",
|
|
551
|
+
"method": "POST",
|
|
552
|
+
"input_schema": {
|
|
553
|
+
"type": "object",
|
|
554
|
+
"properties": {
|
|
555
|
+
"annual_revenue": {
|
|
556
|
+
"type": "number",
|
|
557
|
+
"description": "Annual revenue in dollars."
|
|
479
558
|
},
|
|
480
|
-
"
|
|
559
|
+
"annual_cogs": {
|
|
481
560
|
"type": "number",
|
|
482
|
-
"description": "
|
|
561
|
+
"description": "Annual cost of goods sold. Defaults to 65% of annual_revenue when omitted."
|
|
483
562
|
},
|
|
484
|
-
"
|
|
485
|
-
"type": "
|
|
486
|
-
"
|
|
487
|
-
"volume24hr",
|
|
488
|
-
"liquidity",
|
|
489
|
-
"endDate",
|
|
490
|
-
"startDate"
|
|
491
|
-
],
|
|
492
|
-
"description": "Sort field."
|
|
563
|
+
"accounts_receivable": {
|
|
564
|
+
"type": "number",
|
|
565
|
+
"description": "Current accounts receivable balance."
|
|
493
566
|
},
|
|
494
|
-
"
|
|
495
|
-
"type": "
|
|
496
|
-
"description": "
|
|
567
|
+
"inventory": {
|
|
568
|
+
"type": "number",
|
|
569
|
+
"description": "Current inventory balance."
|
|
497
570
|
},
|
|
498
|
-
"
|
|
571
|
+
"accounts_payable": {
|
|
499
572
|
"type": "number",
|
|
500
|
-
"description": "
|
|
573
|
+
"description": "Current accounts payable balance."
|
|
574
|
+
},
|
|
575
|
+
"target_cash_conversion_days": {
|
|
576
|
+
"type": "number",
|
|
577
|
+
"description": "Target cash conversion cycle days. Default 45."
|
|
501
578
|
}
|
|
502
|
-
}
|
|
579
|
+
},
|
|
580
|
+
"required": [
|
|
581
|
+
"annual_revenue",
|
|
582
|
+
"accounts_receivable",
|
|
583
|
+
"inventory",
|
|
584
|
+
"accounts_payable"
|
|
585
|
+
]
|
|
503
586
|
}
|
|
504
587
|
},
|
|
505
588
|
{
|
|
506
|
-
"name": "
|
|
507
|
-
"http_name": "
|
|
508
|
-
"description": "(0.
|
|
589
|
+
"name": "early-payment-discount-calculator",
|
|
590
|
+
"http_name": "early-payment-discount-calculator",
|
|
591
|
+
"description": "(0.01 USDC/call) Early payment discount calculator / supplier discount APR / invoice acceleration economics. Same calculator as invoice-discount-calculator.",
|
|
509
592
|
"method": "POST",
|
|
510
593
|
"input_schema": {
|
|
511
594
|
"type": "object",
|
|
512
595
|
"properties": {
|
|
513
|
-
"
|
|
514
|
-
"type": "
|
|
515
|
-
"description": "
|
|
516
|
-
},
|
|
517
|
-
"user": {
|
|
518
|
-
"type": "string",
|
|
519
|
-
"description": "Polymarket proxy wallet address to filter by. Optional."
|
|
596
|
+
"invoice_amount": {
|
|
597
|
+
"type": "number",
|
|
598
|
+
"description": "Gross invoice face value."
|
|
520
599
|
},
|
|
521
|
-
"
|
|
600
|
+
"days_until_due": {
|
|
522
601
|
"type": "number",
|
|
523
|
-
"description": "
|
|
602
|
+
"description": "Days until the invoice would otherwise be paid."
|
|
524
603
|
},
|
|
525
|
-
"
|
|
604
|
+
"discount_pct": {
|
|
526
605
|
"type": "number",
|
|
527
|
-
"description": "
|
|
606
|
+
"description": "Discount as percent of invoice amount. Required unless discount_amount is supplied."
|
|
528
607
|
},
|
|
529
|
-
"
|
|
530
|
-
"type": "
|
|
531
|
-
"
|
|
532
|
-
"BUY",
|
|
533
|
-
"SELL"
|
|
534
|
-
],
|
|
535
|
-
"description": "Filter by side."
|
|
608
|
+
"discount_amount": {
|
|
609
|
+
"type": "number",
|
|
610
|
+
"description": "Discount dollars. Required unless discount_pct is supplied."
|
|
536
611
|
},
|
|
537
|
-
"
|
|
612
|
+
"advance_rate_pct": {
|
|
538
613
|
"type": "number",
|
|
539
|
-
"description": "
|
|
614
|
+
"description": "Percent of invoice advanced immediately. Default 100."
|
|
540
615
|
},
|
|
541
|
-
"
|
|
616
|
+
"annual_cost_of_capital_pct": {
|
|
542
617
|
"type": "number",
|
|
543
|
-
"description": "
|
|
618
|
+
"description": "Benchmark annual cost of capital percent. Default 12."
|
|
544
619
|
}
|
|
545
|
-
}
|
|
620
|
+
},
|
|
621
|
+
"required": [
|
|
622
|
+
"invoice_amount",
|
|
623
|
+
"days_until_due"
|
|
624
|
+
]
|
|
546
625
|
}
|
|
547
626
|
},
|
|
548
627
|
{
|
|
549
|
-
"name": "
|
|
550
|
-
"http_name": "
|
|
551
|
-
"description": "(0.
|
|
628
|
+
"name": "earnings-calendar",
|
|
629
|
+
"http_name": "earnings-calendar",
|
|
630
|
+
"description": "(0.03 USDC/call) Earnings calendar / next earnings date / earnings release schedule / quarterly results dates / 10-Q + 10-K + 8-K Item 2.02 feed / late-filing NT-10 tracker / earnings-date estimator. For a US-listed ticker (or CIK), returns recent and upcoming earnings-related SEC filings — 8-K Item 2.02 (Results of Operations), 10-Q, 10-K, NT 10-Q, NT 10-K — with filed_date, fiscal-quarter end, accession number, and EDGAR document URL, plus a next-earnings-date estimate derived from prior cadence. SEC EDGAR public data only — no aggregator ToU risk.",
|
|
552
631
|
"method": "POST",
|
|
553
632
|
"input_schema": {
|
|
554
633
|
"type": "object",
|
|
555
634
|
"properties": {
|
|
556
635
|
"ticker": {
|
|
557
636
|
"type": "string",
|
|
558
|
-
"description": "US
|
|
637
|
+
"description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
|
|
559
638
|
},
|
|
560
639
|
"cik": {
|
|
561
640
|
"type": "string",
|
|
562
|
-
"description": "SEC
|
|
563
|
-
},
|
|
564
|
-
"form_type": {
|
|
565
|
-
"type": "string",
|
|
566
|
-
"description": "Filing type to fetch. Default '10-K'. Supports '10-K', '10-Q', '8-K', 'S-1', 'DEF 14A', '4', '13F-HR'."
|
|
641
|
+
"description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
567
642
|
},
|
|
568
643
|
"limit": {
|
|
569
644
|
"type": "number",
|
|
570
|
-
"description": "Max filings to return
|
|
571
|
-
},
|
|
572
|
-
"summarize": {
|
|
573
|
-
"type": "boolean",
|
|
574
|
-
"description": "If true, run latest filing through Venice for an executive summary tuned to the form type."
|
|
645
|
+
"description": "Max earnings-related filings to return. 1-50. Default 8."
|
|
575
646
|
},
|
|
576
|
-
"
|
|
647
|
+
"upcoming_only": {
|
|
577
648
|
"type": "boolean",
|
|
578
|
-
"description": "If true,
|
|
649
|
+
"description": "If true, only returns the next-earnings estimate plus future-dated filings (skips historical events). Default false."
|
|
579
650
|
}
|
|
580
651
|
}
|
|
581
652
|
}
|
|
582
653
|
},
|
|
583
654
|
{
|
|
584
|
-
"name": "
|
|
585
|
-
"http_name": "
|
|
586
|
-
"description": "(0.03 USDC/call)
|
|
655
|
+
"name": "earnings-calendar-api",
|
|
656
|
+
"http_name": "earnings-calendar-api",
|
|
657
|
+
"description": "(0.03 USDC/call) Earnings calendar API / next earnings date API / SEC earnings filing calendar. Same EDGAR-backed handler as earnings-calendar, listed for agents finding 8-K Item 2.02, 10-Q, 10-K, NT filing signals, fiscal periods, and next-earnings cadence estimates.",
|
|
587
658
|
"method": "POST",
|
|
588
659
|
"input_schema": {
|
|
589
660
|
"type": "object",
|
|
590
661
|
"properties": {
|
|
591
|
-
"
|
|
662
|
+
"ticker": {
|
|
592
663
|
"type": "string",
|
|
593
|
-
"description": "
|
|
664
|
+
"description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
|
|
594
665
|
},
|
|
595
|
-
"
|
|
666
|
+
"cik": {
|
|
596
667
|
"type": "string",
|
|
597
|
-
"description": "
|
|
668
|
+
"description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
669
|
+
},
|
|
670
|
+
"limit": {
|
|
671
|
+
"type": "number",
|
|
672
|
+
"description": "Max earnings-related filings to return. 1-50. Default 8."
|
|
673
|
+
},
|
|
674
|
+
"upcoming_only": {
|
|
675
|
+
"type": "boolean",
|
|
676
|
+
"description": "If true, only returns the next-earnings estimate plus future-dated filings (skips historical events). Default false."
|
|
598
677
|
}
|
|
599
678
|
}
|
|
600
679
|
}
|
|
601
680
|
},
|
|
602
681
|
{
|
|
603
|
-
"name": "
|
|
604
|
-
"http_name": "
|
|
605
|
-
"description": "(0.
|
|
682
|
+
"name": "earnings-call-transcribe",
|
|
683
|
+
"http_name": "earnings-call-transcribe",
|
|
684
|
+
"description": "(0.03 USDC/call) Earnings call transcriber. Caller-supplied IR webcast/replay URL to Whisper v3 transcript to optional Venice structured summary (prepared remarks, Q&A, guidance, key metrics).",
|
|
685
|
+
"method": "POST",
|
|
686
|
+
"input_schema": {
|
|
687
|
+
"type": "object",
|
|
688
|
+
"properties": {
|
|
689
|
+
"audio_url": {
|
|
690
|
+
"type": "string"
|
|
691
|
+
},
|
|
692
|
+
"ticker": {
|
|
693
|
+
"type": "string"
|
|
694
|
+
},
|
|
695
|
+
"summarize": {
|
|
696
|
+
"type": "boolean"
|
|
697
|
+
},
|
|
698
|
+
"language": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"required": [
|
|
703
|
+
"audio_url"
|
|
704
|
+
]
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"name": "earnings-transcript",
|
|
709
|
+
"http_name": "earnings-transcript",
|
|
710
|
+
"description": "(0.03 USDC/call) Earnings call transcript generator. Submit any IR webcast or replay URL — Whisper v3 returns a full transcript, plus an optional Venice structured summary (prepared remarks, Q&A, guidance, key metrics). Same backend as earnings-call-transcribe under a clearer slug.",
|
|
606
711
|
"method": "POST",
|
|
607
712
|
"input_schema": {
|
|
608
713
|
"type": "object",
|
|
609
714
|
"properties": {
|
|
610
|
-
"
|
|
611
|
-
"type": "string"
|
|
612
|
-
"description": "Wordmark text to search (1-100 chars, e.g. 'APPLE', 'agentutility'). Matches active USPTO trademark wordmarks; case-insensitive."
|
|
715
|
+
"audio_url": {
|
|
716
|
+
"type": "string"
|
|
613
717
|
},
|
|
614
|
-
"
|
|
615
|
-
"type": "string"
|
|
616
|
-
"enum": [
|
|
617
|
-
"active",
|
|
618
|
-
"all"
|
|
619
|
-
],
|
|
620
|
-
"description": "'active' (default — Live registrations only, what you usually want for clearance) or 'all' (includes abandoned, expired, cancelled)."
|
|
718
|
+
"ticker": {
|
|
719
|
+
"type": "string"
|
|
621
720
|
},
|
|
622
|
-
"
|
|
623
|
-
"type": "
|
|
624
|
-
|
|
721
|
+
"summarize": {
|
|
722
|
+
"type": "boolean"
|
|
723
|
+
},
|
|
724
|
+
"language": {
|
|
725
|
+
"type": "string"
|
|
625
726
|
}
|
|
626
727
|
},
|
|
627
728
|
"required": [
|
|
628
|
-
"
|
|
729
|
+
"audio_url"
|
|
629
730
|
]
|
|
630
731
|
}
|
|
631
732
|
},
|
|
632
733
|
{
|
|
633
|
-
"name": "
|
|
634
|
-
"http_name": "
|
|
635
|
-
"description": "(0.
|
|
734
|
+
"name": "edgar-filings",
|
|
735
|
+
"http_name": "edgar-filings",
|
|
736
|
+
"description": "(0.01 USDC/call) EDGAR filings lookup / SEC EDGAR API / public company filing fetcher. Resolves ticker or CIK, returns recent filing metadata and document URLs, and can include filing text or a Venice executive summary. Same backend as sec-filing.",
|
|
636
737
|
"method": "POST",
|
|
637
738
|
"input_schema": {
|
|
638
739
|
"type": "object",
|
|
639
740
|
"properties": {
|
|
640
|
-
"
|
|
741
|
+
"ticker": {
|
|
641
742
|
"type": "string",
|
|
642
|
-
"description": "
|
|
743
|
+
"description": "US-listed stock ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
|
|
643
744
|
},
|
|
644
|
-
"
|
|
745
|
+
"cik": {
|
|
645
746
|
"type": "string",
|
|
646
|
-
"description": "
|
|
747
|
+
"description": "SEC Central Index Key (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
748
|
+
},
|
|
749
|
+
"form_type": {
|
|
750
|
+
"type": "string",
|
|
751
|
+
"description": "Filing type. Default '10-K'. Supports 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR."
|
|
752
|
+
},
|
|
753
|
+
"limit": {
|
|
754
|
+
"type": "number",
|
|
755
|
+
"description": "Max filings to return. 1-20. Default 5 (most-recent-first)."
|
|
756
|
+
},
|
|
757
|
+
"summarize": {
|
|
758
|
+
"type": "boolean",
|
|
759
|
+
"description": "If true, runs the latest filing through Venice for an executive-summary tailored to the form. Adds latency. Default false."
|
|
760
|
+
},
|
|
761
|
+
"include_text": {
|
|
762
|
+
"type": "boolean",
|
|
763
|
+
"description": "If true, includes the full clean-text body of the latest filing in the response. Large payload. Default false."
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"name": "embedded-finance-score",
|
|
770
|
+
"http_name": "embedded-finance-score",
|
|
771
|
+
"description": "(0.01 USDC/call) Embedded finance score API / fintech integration quality / compliance KYC uptime conversion chargeback score. Scores embedded lending/payments/wallet programs across compliance maturity, KYC coverage, API uptime, conversion lift, and chargeback or loss rate. Returns 0-100 score, grade, recommendation, metrics, and drivers.",
|
|
772
|
+
"method": "POST",
|
|
773
|
+
"input_schema": {
|
|
774
|
+
"type": "object",
|
|
775
|
+
"properties": {
|
|
776
|
+
"compliance_score": {
|
|
777
|
+
"type": "number",
|
|
778
|
+
"description": "0-100 compliance, licensing, and control maturity."
|
|
779
|
+
},
|
|
780
|
+
"kyc_coverage_pct": {
|
|
781
|
+
"type": "number",
|
|
782
|
+
"description": "Percent of users/accounts covered by KYC/fraud checks."
|
|
783
|
+
},
|
|
784
|
+
"api_uptime_pct": {
|
|
785
|
+
"type": "number",
|
|
786
|
+
"description": "Recent API uptime percent."
|
|
787
|
+
},
|
|
788
|
+
"conversion_lift_pct": {
|
|
789
|
+
"type": "number",
|
|
790
|
+
"description": "Conversion lift versus baseline. Default 0."
|
|
791
|
+
},
|
|
792
|
+
"chargeback_rate_pct": {
|
|
793
|
+
"type": "number",
|
|
794
|
+
"description": "Chargeback/loss rate percent. Default 1."
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"required": [
|
|
798
|
+
"compliance_score",
|
|
799
|
+
"kyc_coverage_pct",
|
|
800
|
+
"api_uptime_pct"
|
|
801
|
+
]
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"name": "embedded-finance-score-api",
|
|
806
|
+
"http_name": "embedded-finance-score-api",
|
|
807
|
+
"description": "(0.01 USDC/call) Embedded finance score API / fintech integration scoring / compliance and conversion lift scoring. Same model as embedded-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
808
|
+
"method": "POST",
|
|
809
|
+
"input_schema": {
|
|
810
|
+
"type": "object",
|
|
811
|
+
"properties": {
|
|
812
|
+
"compliance_score": {
|
|
813
|
+
"type": "number",
|
|
814
|
+
"description": "0-100 compliance, licensing, and control maturity."
|
|
815
|
+
},
|
|
816
|
+
"kyc_coverage_pct": {
|
|
817
|
+
"type": "number",
|
|
818
|
+
"description": "Percent of users/accounts covered by KYC/fraud checks."
|
|
819
|
+
},
|
|
820
|
+
"api_uptime_pct": {
|
|
821
|
+
"type": "number",
|
|
822
|
+
"description": "Recent API uptime percent."
|
|
823
|
+
},
|
|
824
|
+
"conversion_lift_pct": {
|
|
825
|
+
"type": "number",
|
|
826
|
+
"description": "Conversion lift versus baseline. Default 0."
|
|
827
|
+
},
|
|
828
|
+
"chargeback_rate_pct": {
|
|
829
|
+
"type": "number",
|
|
830
|
+
"description": "Chargeback/loss rate percent. Default 1."
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"required": [
|
|
834
|
+
"compliance_score",
|
|
835
|
+
"kyc_coverage_pct",
|
|
836
|
+
"api_uptime_pct"
|
|
837
|
+
]
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "emergency-fund-calculator",
|
|
842
|
+
"http_name": "emergency-fund-calculator",
|
|
843
|
+
"description": "(0.01 USDC/call) Emergency fund calculator API / rainy-day fund target / months-of-expenses runway / savings cushion planner. Computes the recommended emergency-fund target (essential monthly expenses x target months), current coverage ratio, months of expenses already saved, shortfall, monthly surplus, and months to reach the target at the current savings pace, plus a readiness score, drivers, and recommendation.",
|
|
844
|
+
"method": "POST",
|
|
845
|
+
"input_schema": {
|
|
846
|
+
"type": "object",
|
|
847
|
+
"properties": {
|
|
848
|
+
"monthly_essential_expenses": {
|
|
849
|
+
"type": "number",
|
|
850
|
+
"description": "Essential monthly living costs to cover (rent, food, utilities, minimum debt payments)."
|
|
851
|
+
},
|
|
852
|
+
"current_savings": {
|
|
853
|
+
"type": "number",
|
|
854
|
+
"description": "Liquid savings already set aside for emergencies."
|
|
855
|
+
},
|
|
856
|
+
"target_months": {
|
|
857
|
+
"type": "number",
|
|
858
|
+
"description": "Months of expenses to target. Default 6 (range 1-36)."
|
|
859
|
+
},
|
|
860
|
+
"monthly_income": {
|
|
861
|
+
"type": "number",
|
|
862
|
+
"description": "Optional take-home monthly income; used to estimate savings pace."
|
|
863
|
+
},
|
|
864
|
+
"job_stability_score": {
|
|
865
|
+
"type": "number",
|
|
866
|
+
"description": "Optional 0-100 estimate of income/job stability."
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
"required": [
|
|
870
|
+
"monthly_essential_expenses",
|
|
871
|
+
"current_savings"
|
|
872
|
+
]
|
|
873
|
+
}
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"name": "equipment-finance-score",
|
|
877
|
+
"http_name": "equipment-finance-score",
|
|
878
|
+
"description": "(0.01 USDC/call) Equipment finance score API / equipment loan and lease risk scorer / collateral coverage + term-vs-useful-life analysis. Scores an equipment financing on lessee credit, collateral coverage, equity cushion, and term-vs-useful-life fit, returning a weighted score, grade, drivers, and recommendation.",
|
|
879
|
+
"method": "POST",
|
|
880
|
+
"input_schema": {
|
|
881
|
+
"type": "object",
|
|
882
|
+
"properties": {
|
|
883
|
+
"equipment_cost": {
|
|
884
|
+
"type": "number",
|
|
885
|
+
"description": "Equipment purchase price (USD)."
|
|
886
|
+
},
|
|
887
|
+
"down_payment_pct": {
|
|
888
|
+
"type": "number",
|
|
889
|
+
"description": "Down payment percent."
|
|
890
|
+
},
|
|
891
|
+
"useful_life_years": {
|
|
892
|
+
"type": "number",
|
|
893
|
+
"description": "Equipment useful life in years."
|
|
894
|
+
},
|
|
895
|
+
"lessee_credit_score": {
|
|
896
|
+
"type": "number",
|
|
897
|
+
"description": "Borrower/lessee credit quality, 0-100."
|
|
898
|
+
},
|
|
899
|
+
"resale_value_pct": {
|
|
900
|
+
"type": "number",
|
|
901
|
+
"description": "Estimated resale/residual value percent. Optional, default 40."
|
|
902
|
+
},
|
|
903
|
+
"term_years": {
|
|
904
|
+
"type": "number",
|
|
905
|
+
"description": "Financing term in years. Optional, defaults to min(useful life, 5)."
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
"required": [
|
|
909
|
+
"equipment_cost",
|
|
910
|
+
"down_payment_pct",
|
|
911
|
+
"useful_life_years",
|
|
912
|
+
"lessee_credit_score"
|
|
913
|
+
]
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "exchange-rates",
|
|
918
|
+
"http_name": "exchange-rates",
|
|
919
|
+
"description": "(0.002 USDC/call) Exchange rates. Latest or historical FX rates between currencies, sourced from the European Central Bank (Frankfurter API). 30+ currency pairs. Optional amount conversion. No commercial restrictions. Specify a base currency (default USD), an optional quote currency or list, an optional date (YYYY-MM-DD or 'latest'), and an optional amount to also receive a converted value when a single quote is supplied.",
|
|
920
|
+
"method": "POST",
|
|
921
|
+
"input_schema": {
|
|
922
|
+
"type": "object",
|
|
923
|
+
"properties": {
|
|
924
|
+
"base": {
|
|
925
|
+
"type": "string",
|
|
926
|
+
"description": "ISO 4217 base currency code (e.g. 'USD', 'EUR'). Default 'USD'."
|
|
927
|
+
},
|
|
928
|
+
"quote": {
|
|
929
|
+
"description": "Single ISO 4217 quote currency, or array of codes. Omit for all available rates."
|
|
930
|
+
},
|
|
931
|
+
"date": {
|
|
932
|
+
"type": "string",
|
|
933
|
+
"description": "'latest' (default) or a historical date in YYYY-MM-DD format."
|
|
934
|
+
},
|
|
935
|
+
"amount": {
|
|
936
|
+
"type": "number",
|
|
937
|
+
"description": "Optional amount in the base currency. When a single quote is supplied, the response includes the converted amount."
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "fda-calendar",
|
|
944
|
+
"http_name": "fda-calendar",
|
|
945
|
+
"description": "(0.03 USDC/call) FDA AdComm calendar / FDA Advisory Committee meeting tracker / PDUFA-adjacent catalyst feed / biotech FDA event watch / drug-approval committee schedule / vaccine + oncology + cardiovascular AdComm dates / Federal Register FDA notice scanner. Pulls upcoming and recent FDA Advisory Committee meeting notices from the Federal Register API (federalregister.gov), filters for AdComm-class meetings, and returns each with title, committee, meeting date, docket info, and source URL. Filter by free-text search and cap result count. Federal public — no auth.",
|
|
946
|
+
"method": "POST",
|
|
947
|
+
"input_schema": {
|
|
948
|
+
"type": "object",
|
|
949
|
+
"properties": {
|
|
950
|
+
"upcoming_only": {
|
|
951
|
+
"type": "boolean",
|
|
952
|
+
"description": "If true, return only meetings scheduled in the future (relative to fetched_at). Default false (returns recent + upcoming within the days_back window)."
|
|
953
|
+
},
|
|
954
|
+
"search": {
|
|
955
|
+
"type": "string",
|
|
956
|
+
"description": "Free-text filter applied to meeting title/committee (case-insensitive substring). Examples: 'vaccine', 'oncology', 'cardiovascular'."
|
|
957
|
+
},
|
|
958
|
+
"limit": {
|
|
959
|
+
"type": "number",
|
|
960
|
+
"description": "Max meetings to return (1-50). Default 25."
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"name": "fda-calendar-api",
|
|
967
|
+
"http_name": "fda-calendar-api",
|
|
968
|
+
"description": "(0.03 USDC/call) FDA calendar API / FDA advisory committee meeting tracker / biotech catalyst feed. Same Federal Register-backed handler as fda-calendar, listed for agents monitoring upcoming and recent FDA AdComm notices, docket ids, committee names, and meeting dates.",
|
|
969
|
+
"method": "POST",
|
|
970
|
+
"input_schema": {
|
|
971
|
+
"type": "object",
|
|
972
|
+
"properties": {
|
|
973
|
+
"upcoming_only": {
|
|
974
|
+
"type": "boolean",
|
|
975
|
+
"description": "If true, return only meetings scheduled in the future (relative to fetched_at). Default false (returns recent + upcoming within the days_back window)."
|
|
976
|
+
},
|
|
977
|
+
"search": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"description": "Free-text filter applied to meeting title/committee (case-insensitive substring). Examples: 'vaccine', 'oncology', 'cardiovascular'."
|
|
980
|
+
},
|
|
981
|
+
"limit": {
|
|
982
|
+
"type": "number",
|
|
983
|
+
"description": "Max meetings to return (1-50). Default 25."
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "fec-political-contributions",
|
|
990
|
+
"http_name": "fec-political-contributions",
|
|
991
|
+
"description": "(0.04 USDC/call) FEC political donations / campaign contributions search / who-donated-to-whom / OpenSecrets-style finance feed / individual contributions to federal candidates + PACs + super PACs / Schedule A itemized donor records / cycle + state + amount filters / lobbyist-money tracker. Wraps api.open.fec.gov individual_contributions. Filter by donor name (last+first), recipient committee_id, candidate_id, election cycle, contributor state, and min/max amount — returns itemized contributions with donor name + employer + occupation, recipient committee, amount, date, and FEC source link. Federal public data.",
|
|
992
|
+
"method": "POST",
|
|
993
|
+
"input_schema": {
|
|
994
|
+
"type": "object",
|
|
995
|
+
"properties": {
|
|
996
|
+
"donor_name": {
|
|
997
|
+
"type": "string",
|
|
998
|
+
"description": "Donor name in 'LAST FIRST' format (FEC convention, e.g. 'SMITH JOHN'). Case-insensitive."
|
|
999
|
+
},
|
|
1000
|
+
"committee_id": {
|
|
1001
|
+
"type": "string",
|
|
1002
|
+
"description": "FEC committee id (recipient), e.g. 'C00401224' for Obama for America."
|
|
1003
|
+
},
|
|
1004
|
+
"candidate_id": {
|
|
1005
|
+
"type": "string",
|
|
1006
|
+
"description": "FEC candidate id (recipient candidate), e.g. 'P80003338'."
|
|
1007
|
+
},
|
|
1008
|
+
"cycle": {
|
|
1009
|
+
"type": "number",
|
|
1010
|
+
"description": "Election cycle (even year, e.g. 2024, 2026). Default: latest available."
|
|
1011
|
+
},
|
|
1012
|
+
"state": {
|
|
1013
|
+
"type": "string",
|
|
1014
|
+
"description": "Donor state, 2-letter code (e.g. 'CA', 'NY')."
|
|
1015
|
+
},
|
|
1016
|
+
"min_amount": {
|
|
1017
|
+
"type": "number",
|
|
1018
|
+
"description": "Minimum contribution amount in USD. Default no floor."
|
|
1019
|
+
},
|
|
1020
|
+
"max_amount": {
|
|
1021
|
+
"type": "number",
|
|
1022
|
+
"description": "Maximum contribution amount in USD. Default no ceiling."
|
|
1023
|
+
},
|
|
1024
|
+
"limit": {
|
|
1025
|
+
"type": "number",
|
|
1026
|
+
"description": "Max records to return. 1-100. Default 20."
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "home-affordability-payment",
|
|
1033
|
+
"http_name": "home-affordability-payment",
|
|
1034
|
+
"description": "(0.01 USDC/call) Home affordability payment API / monthly mortgage payment calculator / housing DTI estimator. Same backend as mortgage-payment-calculator, returning PITI, escrow components, optional housing DTI, score, and recommendation.",
|
|
1035
|
+
"method": "POST",
|
|
1036
|
+
"input_schema": {
|
|
1037
|
+
"type": "object",
|
|
1038
|
+
"properties": {
|
|
1039
|
+
"home_price": {
|
|
1040
|
+
"type": "number",
|
|
1041
|
+
"description": "Purchase price or property value."
|
|
1042
|
+
},
|
|
1043
|
+
"down_payment": {
|
|
1044
|
+
"type": "number",
|
|
1045
|
+
"description": "Cash down payment. Default 0."
|
|
1046
|
+
},
|
|
1047
|
+
"loan_amount": {
|
|
1048
|
+
"type": "number",
|
|
1049
|
+
"description": "Optional explicit loan amount; defaults to home_price minus down_payment."
|
|
1050
|
+
},
|
|
1051
|
+
"annual_rate": {
|
|
1052
|
+
"type": "number",
|
|
1053
|
+
"description": "Annual mortgage rate as percent, e.g. 6.75."
|
|
1054
|
+
},
|
|
1055
|
+
"term_years": {
|
|
1056
|
+
"type": "number",
|
|
1057
|
+
"description": "Loan term in years."
|
|
1058
|
+
},
|
|
1059
|
+
"annual_property_tax": {
|
|
1060
|
+
"type": "number",
|
|
1061
|
+
"description": "Annual property tax. Default 0."
|
|
1062
|
+
},
|
|
1063
|
+
"annual_insurance": {
|
|
1064
|
+
"type": "number",
|
|
1065
|
+
"description": "Annual homeowners insurance. Default 0."
|
|
1066
|
+
},
|
|
1067
|
+
"monthly_hoa": {
|
|
1068
|
+
"type": "number",
|
|
1069
|
+
"description": "Monthly HOA dues. Default 0."
|
|
1070
|
+
},
|
|
1071
|
+
"monthly_pmi": {
|
|
1072
|
+
"type": "number",
|
|
1073
|
+
"description": "Monthly PMI. Default 0."
|
|
1074
|
+
},
|
|
1075
|
+
"gross_monthly_income": {
|
|
1076
|
+
"type": "number",
|
|
1077
|
+
"description": "Optional borrower gross monthly income for housing DTI."
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"required": [
|
|
1081
|
+
"home_price",
|
|
1082
|
+
"annual_rate",
|
|
1083
|
+
"term_years"
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "insider-form-4",
|
|
1089
|
+
"http_name": "insider-form-4",
|
|
1090
|
+
"description": "(0.01 USDC/call) SEC Form 4 insider transactions / insider trading feed / officer-director trades / 10% beneficial owner filings / Section 16 / executive buy-sell tracker / EDGAR Form 4 normalizer. Returns recent Form 4 filings for a US-listed ticker (or CIK) with each transaction's reporting owner, role (officer / director / 10%+ owner), filing date, period of report, transaction code (P=purchase, S=sale, A=grant, M=exercise, F=tax, etc.), shares, price, post-transaction holdings, and EDGAR document URL. Public-domain SEC EDGAR data — no auth, no rate-limit headache.",
|
|
1091
|
+
"method": "POST",
|
|
1092
|
+
"input_schema": {
|
|
1093
|
+
"type": "object",
|
|
1094
|
+
"properties": {
|
|
1095
|
+
"ticker": {
|
|
1096
|
+
"type": "string",
|
|
1097
|
+
"description": "US-listed ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
|
|
1098
|
+
},
|
|
1099
|
+
"cik": {
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
1102
|
+
},
|
|
1103
|
+
"limit": {
|
|
1104
|
+
"type": "number",
|
|
1105
|
+
"description": "Max Form 4 filings to return. 1-50. Default 10."
|
|
1106
|
+
},
|
|
1107
|
+
"include_derivatives": {
|
|
1108
|
+
"type": "boolean",
|
|
1109
|
+
"description": "If true, includes derivative-security transactions (options, RSUs, performance shares). Default true."
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"name": "insider-trading",
|
|
1116
|
+
"http_name": "insider-trading",
|
|
1117
|
+
"description": "(0.01 USDC/call) Insider trading feed. Recent SEC Form 4 transactions for any US-listed ticker — officer, director, and 10% beneficial owner buys and sells. Returns transaction code (P=purchase, S=sale, A=grant, M=exercise), shares, price, post-transaction holdings, filed date, and EDGAR document URL. Wraps the same EDGAR-backed source as insider-form-4 under a more search-friendly name. Federal public data.",
|
|
1118
|
+
"method": "POST",
|
|
1119
|
+
"input_schema": {
|
|
1120
|
+
"type": "object",
|
|
1121
|
+
"properties": {
|
|
1122
|
+
"ticker": {
|
|
1123
|
+
"type": "string",
|
|
1124
|
+
"description": "US-listed ticker (e.g. 'AAPL'). Either ticker or cik is required."
|
|
1125
|
+
},
|
|
1126
|
+
"cik": {
|
|
1127
|
+
"type": "string",
|
|
1128
|
+
"description": "SEC CIK."
|
|
1129
|
+
},
|
|
1130
|
+
"limit": {
|
|
1131
|
+
"type": "number",
|
|
1132
|
+
"description": "Max filings, 1-50. Default 10."
|
|
1133
|
+
},
|
|
1134
|
+
"include_derivatives": {
|
|
1135
|
+
"type": "boolean"
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"name": "inventory-finance-score",
|
|
1142
|
+
"http_name": "inventory-finance-score",
|
|
1143
|
+
"description": "(0.01 USDC/call) Inventory finance score API / inventory financing risk scorer / inventory turns + obsolescence + advance-rate analysis. Scores an inventory facility on turnover, obsolescence risk, advance discipline, and margin cushion, returning a weighted score, grade, drivers, and recommendation.",
|
|
1144
|
+
"method": "POST",
|
|
1145
|
+
"input_schema": {
|
|
1146
|
+
"type": "object",
|
|
1147
|
+
"properties": {
|
|
1148
|
+
"inventory_value": {
|
|
1149
|
+
"type": "number",
|
|
1150
|
+
"description": "Eligible inventory value (USD)."
|
|
1151
|
+
},
|
|
1152
|
+
"advance_rate_pct": {
|
|
1153
|
+
"type": "number",
|
|
1154
|
+
"description": "Advance rate against inventory percent."
|
|
1155
|
+
},
|
|
1156
|
+
"inventory_turns": {
|
|
1157
|
+
"type": "number",
|
|
1158
|
+
"description": "Annual inventory turns."
|
|
1159
|
+
},
|
|
1160
|
+
"obsolescence_pct": {
|
|
1161
|
+
"type": "number",
|
|
1162
|
+
"description": "Obsolescence / shrink percent. Optional, default 5."
|
|
1163
|
+
},
|
|
1164
|
+
"gross_margin_pct": {
|
|
1165
|
+
"type": "number",
|
|
1166
|
+
"description": "Gross margin percent. Optional, default 35."
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"required": [
|
|
1170
|
+
"inventory_value",
|
|
1171
|
+
"advance_rate_pct",
|
|
1172
|
+
"inventory_turns"
|
|
1173
|
+
]
|
|
1174
|
+
}
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"name": "invoice-discount-api",
|
|
1178
|
+
"http_name": "invoice-discount-api",
|
|
1179
|
+
"description": "(0.01 USDC/call) Invoice discount API / early payment discount APR API / factoring economics calculator. Same calculator as invoice-discount-calculator, exposed under likely buyer search terms.",
|
|
1180
|
+
"method": "POST",
|
|
1181
|
+
"input_schema": {
|
|
1182
|
+
"type": "object",
|
|
1183
|
+
"properties": {
|
|
1184
|
+
"invoice_amount": {
|
|
1185
|
+
"type": "number",
|
|
1186
|
+
"description": "Gross invoice face value."
|
|
1187
|
+
},
|
|
1188
|
+
"days_until_due": {
|
|
1189
|
+
"type": "number",
|
|
1190
|
+
"description": "Days until the invoice would otherwise be paid."
|
|
1191
|
+
},
|
|
1192
|
+
"discount_pct": {
|
|
1193
|
+
"type": "number",
|
|
1194
|
+
"description": "Discount as percent of invoice amount. Required unless discount_amount is supplied."
|
|
1195
|
+
},
|
|
1196
|
+
"discount_amount": {
|
|
1197
|
+
"type": "number",
|
|
1198
|
+
"description": "Discount dollars. Required unless discount_pct is supplied."
|
|
1199
|
+
},
|
|
1200
|
+
"advance_rate_pct": {
|
|
1201
|
+
"type": "number",
|
|
1202
|
+
"description": "Percent of invoice advanced immediately. Default 100."
|
|
1203
|
+
},
|
|
1204
|
+
"annual_cost_of_capital_pct": {
|
|
1205
|
+
"type": "number",
|
|
1206
|
+
"description": "Benchmark annual cost of capital percent. Default 12."
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"required": [
|
|
1210
|
+
"invoice_amount",
|
|
1211
|
+
"days_until_due"
|
|
1212
|
+
]
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"name": "invoice-discount-calculator",
|
|
1217
|
+
"http_name": "invoice-discount-calculator",
|
|
1218
|
+
"description": "(0.01 USDC/call) Invoice discount calculator API / early payment discount APR / factoring discount economics / AR acceleration calculator. Computes discount dollars, net cash received, effective APR, advance amount, and premium versus cost of capital for invoice acceleration decisions.",
|
|
1219
|
+
"method": "POST",
|
|
1220
|
+
"input_schema": {
|
|
1221
|
+
"type": "object",
|
|
1222
|
+
"properties": {
|
|
1223
|
+
"invoice_amount": {
|
|
1224
|
+
"type": "number",
|
|
1225
|
+
"description": "Gross invoice face value."
|
|
1226
|
+
},
|
|
1227
|
+
"days_until_due": {
|
|
1228
|
+
"type": "number",
|
|
1229
|
+
"description": "Days until the invoice would otherwise be paid."
|
|
1230
|
+
},
|
|
1231
|
+
"discount_pct": {
|
|
1232
|
+
"type": "number",
|
|
1233
|
+
"description": "Discount as percent of invoice amount. Required unless discount_amount is supplied."
|
|
1234
|
+
},
|
|
1235
|
+
"discount_amount": {
|
|
1236
|
+
"type": "number",
|
|
1237
|
+
"description": "Discount dollars. Required unless discount_pct is supplied."
|
|
1238
|
+
},
|
|
1239
|
+
"advance_rate_pct": {
|
|
1240
|
+
"type": "number",
|
|
1241
|
+
"description": "Percent of invoice advanced immediately. Default 100."
|
|
1242
|
+
},
|
|
1243
|
+
"annual_cost_of_capital_pct": {
|
|
1244
|
+
"type": "number",
|
|
1245
|
+
"description": "Benchmark annual cost of capital percent. Default 12."
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
"required": [
|
|
1249
|
+
"invoice_amount",
|
|
1250
|
+
"days_until_due"
|
|
1251
|
+
]
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"name": "invoice-factoring-calculator",
|
|
1256
|
+
"http_name": "invoice-factoring-calculator",
|
|
1257
|
+
"description": "(0.01 USDC/call) Invoice factoring calculator / factoring discount APR API / invoice advance economics. Same backend as invoice-discount-calculator, focused on advance rate, discount amount, effective APR, and capital-cost premium.",
|
|
1258
|
+
"method": "POST",
|
|
1259
|
+
"input_schema": {
|
|
1260
|
+
"type": "object",
|
|
1261
|
+
"properties": {
|
|
1262
|
+
"invoice_amount": {
|
|
1263
|
+
"type": "number",
|
|
1264
|
+
"description": "Gross invoice face value."
|
|
1265
|
+
},
|
|
1266
|
+
"days_until_due": {
|
|
1267
|
+
"type": "number",
|
|
1268
|
+
"description": "Days until the invoice would otherwise be paid."
|
|
1269
|
+
},
|
|
1270
|
+
"discount_pct": {
|
|
1271
|
+
"type": "number",
|
|
1272
|
+
"description": "Discount as percent of invoice amount. Required unless discount_amount is supplied."
|
|
1273
|
+
},
|
|
1274
|
+
"discount_amount": {
|
|
1275
|
+
"type": "number",
|
|
1276
|
+
"description": "Discount dollars. Required unless discount_pct is supplied."
|
|
1277
|
+
},
|
|
1278
|
+
"advance_rate_pct": {
|
|
1279
|
+
"type": "number",
|
|
1280
|
+
"description": "Percent of invoice advanced immediately. Default 100."
|
|
1281
|
+
},
|
|
1282
|
+
"annual_cost_of_capital_pct": {
|
|
1283
|
+
"type": "number",
|
|
1284
|
+
"description": "Benchmark annual cost of capital percent. Default 12."
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
"required": [
|
|
1288
|
+
"invoice_amount",
|
|
1289
|
+
"days_until_due"
|
|
1290
|
+
]
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"name": "invoice-factoring-score",
|
|
1295
|
+
"http_name": "invoice-factoring-score",
|
|
1296
|
+
"description": "(0.01 USDC/call) Invoice factoring score API / receivables factoring risk score / factoring deal quality scorer / debtor credit + advance rate + dilution analysis. Scores a factoring facility on debtor credit, advance-rate economics, fee burden, dilution, and debtor concentration, returning a weighted score, grade, drivers, and recommendation.",
|
|
1297
|
+
"method": "POST",
|
|
1298
|
+
"input_schema": {
|
|
1299
|
+
"type": "object",
|
|
1300
|
+
"properties": {
|
|
1301
|
+
"debtor_credit_score": {
|
|
1302
|
+
"type": "number",
|
|
1303
|
+
"description": "Obligor/debtor credit quality, 0-100."
|
|
1304
|
+
},
|
|
1305
|
+
"advance_rate_pct": {
|
|
1306
|
+
"type": "number",
|
|
1307
|
+
"description": "Advance rate as percent of invoice face value."
|
|
1308
|
+
},
|
|
1309
|
+
"factoring_fee_pct": {
|
|
1310
|
+
"type": "number",
|
|
1311
|
+
"description": "Factoring fee/discount percent."
|
|
1312
|
+
},
|
|
1313
|
+
"dilution_rate_pct": {
|
|
1314
|
+
"type": "number",
|
|
1315
|
+
"description": "Receivables dilution percent. Optional, default 3."
|
|
1316
|
+
},
|
|
1317
|
+
"debtor_concentration_pct": {
|
|
1318
|
+
"type": "number",
|
|
1319
|
+
"description": "Top-debtor share of the book percent. Optional, default 40."
|
|
1320
|
+
},
|
|
1321
|
+
"avg_days_to_pay": {
|
|
1322
|
+
"type": "number",
|
|
1323
|
+
"description": "Average days to collection. Optional, default 45."
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"required": [
|
|
1327
|
+
"debtor_credit_score",
|
|
1328
|
+
"advance_rate_pct",
|
|
1329
|
+
"factoring_fee_pct"
|
|
1330
|
+
]
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"name": "kalshi-markets",
|
|
1335
|
+
"http_name": "kalshi-markets",
|
|
1336
|
+
"description": "(0.005 USDC/call) Kalshi markets / event contracts / Kalshi API / CFTC-regulated prediction markets / Kalshi browse / KalshiEX markets list. Pulls live markets from api.elections.kalshi.com with filter by status, series ticker, event ticker, free-text query, minimum volume. Prices converted from cents to 0-1 probabilities for easy cross-venue compare. DATA only — no order entry.",
|
|
1337
|
+
"method": "POST",
|
|
1338
|
+
"input_schema": {
|
|
1339
|
+
"type": "object",
|
|
1340
|
+
"properties": {
|
|
1341
|
+
"query": {
|
|
1342
|
+
"type": "string",
|
|
1343
|
+
"description": "Free-text filter on title / ticker / subtitle / event_ticker (substring)."
|
|
1344
|
+
},
|
|
1345
|
+
"series_ticker": {
|
|
1346
|
+
"type": "string",
|
|
1347
|
+
"description": "Filter by series (e.g. 'KXELONMARS')."
|
|
1348
|
+
},
|
|
1349
|
+
"event_ticker": {
|
|
1350
|
+
"type": "string",
|
|
1351
|
+
"description": "Filter by event ticker."
|
|
1352
|
+
},
|
|
1353
|
+
"status": {
|
|
1354
|
+
"type": "string",
|
|
1355
|
+
"enum": [
|
|
1356
|
+
"open",
|
|
1357
|
+
"closed",
|
|
1358
|
+
"settled",
|
|
1359
|
+
"active"
|
|
1360
|
+
],
|
|
1361
|
+
"description": "Default 'open'."
|
|
1362
|
+
},
|
|
1363
|
+
"limit": {
|
|
1364
|
+
"type": "number",
|
|
1365
|
+
"description": "1-200. Default 50."
|
|
1366
|
+
},
|
|
1367
|
+
"cursor": {
|
|
1368
|
+
"type": "string",
|
|
1369
|
+
"description": "Pagination cursor from previous response."
|
|
1370
|
+
},
|
|
1371
|
+
"min_volume": {
|
|
1372
|
+
"type": "number",
|
|
1373
|
+
"description": "Minimum 24-hr volume filter (server-side, on returned page)."
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"name": "litigation-finance-score",
|
|
1380
|
+
"http_name": "litigation-finance-score",
|
|
1381
|
+
"description": "(0.01 USDC/call) Litigation finance score API / lawsuit investment merit / legal claim funding calculator / case finance underwriting. Scores claim value, probability of success, legal budget, expected duration, collectability, and enforceability. Returns expected value after legal costs, budget-to-claim ratio, 0-100 score, grade, recommendation, and driver breakdown.",
|
|
1382
|
+
"method": "POST",
|
|
1383
|
+
"input_schema": {
|
|
1384
|
+
"type": "object",
|
|
1385
|
+
"properties": {
|
|
1386
|
+
"claim_value": {
|
|
1387
|
+
"type": "number",
|
|
1388
|
+
"description": "Expected gross claim or settlement value."
|
|
1389
|
+
},
|
|
1390
|
+
"probability_of_success": {
|
|
1391
|
+
"type": "number",
|
|
1392
|
+
"description": "Probability from 0 to 1."
|
|
1393
|
+
},
|
|
1394
|
+
"legal_budget": {
|
|
1395
|
+
"type": "number",
|
|
1396
|
+
"description": "Expected remaining legal budget."
|
|
1397
|
+
},
|
|
1398
|
+
"duration_months": {
|
|
1399
|
+
"type": "number",
|
|
1400
|
+
"description": "Expected time to resolution."
|
|
1401
|
+
},
|
|
1402
|
+
"counterparty_collectability": {
|
|
1403
|
+
"type": "number",
|
|
1404
|
+
"description": "0-100 ability to collect from defendant/counterparty. Default 70."
|
|
1405
|
+
},
|
|
1406
|
+
"enforceability_score": {
|
|
1407
|
+
"type": "number",
|
|
1408
|
+
"description": "0-100 jurisdiction and award enforceability. Default 70."
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"required": [
|
|
1412
|
+
"claim_value",
|
|
1413
|
+
"probability_of_success",
|
|
1414
|
+
"legal_budget",
|
|
1415
|
+
"duration_months"
|
|
1416
|
+
]
|
|
1417
|
+
}
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"name": "litigation-finance-score-api",
|
|
1421
|
+
"http_name": "litigation-finance-score-api",
|
|
1422
|
+
"description": "(0.01 USDC/call) Litigation finance score API / legal claim finance risk API / case funding scoring. Same finance model as litigation-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
1423
|
+
"method": "POST",
|
|
1424
|
+
"input_schema": {
|
|
1425
|
+
"type": "object",
|
|
1426
|
+
"properties": {
|
|
1427
|
+
"claim_value": {
|
|
1428
|
+
"type": "number",
|
|
1429
|
+
"description": "Expected gross claim or settlement value."
|
|
1430
|
+
},
|
|
1431
|
+
"probability_of_success": {
|
|
1432
|
+
"type": "number",
|
|
1433
|
+
"description": "Probability from 0 to 1."
|
|
1434
|
+
},
|
|
1435
|
+
"legal_budget": {
|
|
1436
|
+
"type": "number",
|
|
1437
|
+
"description": "Expected remaining legal budget."
|
|
1438
|
+
},
|
|
1439
|
+
"duration_months": {
|
|
1440
|
+
"type": "number",
|
|
1441
|
+
"description": "Expected time to resolution."
|
|
1442
|
+
},
|
|
1443
|
+
"counterparty_collectability": {
|
|
1444
|
+
"type": "number",
|
|
1445
|
+
"description": "0-100 ability to collect from defendant/counterparty. Default 70."
|
|
1446
|
+
},
|
|
1447
|
+
"enforceability_score": {
|
|
1448
|
+
"type": "number",
|
|
1449
|
+
"description": "0-100 jurisdiction and award enforceability. Default 70."
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
"required": [
|
|
1453
|
+
"claim_value",
|
|
1454
|
+
"probability_of_success",
|
|
1455
|
+
"legal_budget",
|
|
1456
|
+
"duration_months"
|
|
1457
|
+
]
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"name": "loan-amortization-calculator",
|
|
1462
|
+
"http_name": "loan-amortization-calculator",
|
|
1463
|
+
"description": "(0.01 USDC/call) Loan amortization calculator API / debt payoff schedule / extra payment interest savings calculator. Computes scheduled monthly payment, payoff months, total interest, total paid, and interest saved from extra monthly payments.",
|
|
1464
|
+
"method": "POST",
|
|
1465
|
+
"input_schema": {
|
|
1466
|
+
"type": "object",
|
|
1467
|
+
"properties": {
|
|
1468
|
+
"principal": {
|
|
1469
|
+
"type": "number",
|
|
1470
|
+
"description": "Initial loan principal."
|
|
1471
|
+
},
|
|
1472
|
+
"annual_rate": {
|
|
1473
|
+
"type": "number",
|
|
1474
|
+
"description": "Annual interest rate as percent."
|
|
1475
|
+
},
|
|
1476
|
+
"term_months": {
|
|
1477
|
+
"type": "number",
|
|
1478
|
+
"description": "Loan term in months."
|
|
1479
|
+
},
|
|
1480
|
+
"term_years": {
|
|
1481
|
+
"type": "number",
|
|
1482
|
+
"description": "Alternative loan term in years when term_months is omitted."
|
|
1483
|
+
},
|
|
1484
|
+
"extra_monthly_payment": {
|
|
1485
|
+
"type": "number",
|
|
1486
|
+
"description": "Optional extra monthly principal payment. Default 0."
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
"required": [
|
|
1490
|
+
"principal",
|
|
1491
|
+
"annual_rate"
|
|
1492
|
+
]
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"name": "ltv-cac-calculator",
|
|
1497
|
+
"http_name": "ltv-cac-calculator",
|
|
1498
|
+
"description": "(0.01 USDC/call) LTV CAC calculator / SaaS unit economics API / payback period calculator. Same backend as unit-economics-calculator, returning LTV, LTV/CAC, CAC payback months, margin, churn, score, and recommendation.",
|
|
1499
|
+
"method": "POST",
|
|
1500
|
+
"input_schema": {
|
|
1501
|
+
"type": "object",
|
|
1502
|
+
"properties": {
|
|
1503
|
+
"arpu": {
|
|
1504
|
+
"type": "number",
|
|
1505
|
+
"description": "Average monthly revenue per user/account."
|
|
1506
|
+
},
|
|
1507
|
+
"gross_margin_pct": {
|
|
1508
|
+
"type": "number",
|
|
1509
|
+
"description": "Gross margin percent."
|
|
1510
|
+
},
|
|
1511
|
+
"monthly_churn_pct": {
|
|
1512
|
+
"type": "number",
|
|
1513
|
+
"description": "Monthly customer churn percent."
|
|
1514
|
+
},
|
|
1515
|
+
"cac": {
|
|
1516
|
+
"type": "number",
|
|
1517
|
+
"description": "Customer acquisition cost."
|
|
1518
|
+
},
|
|
1519
|
+
"payback_target_months": {
|
|
1520
|
+
"type": "number",
|
|
1521
|
+
"description": "Target CAC payback months. Default 12."
|
|
1522
|
+
}
|
|
1523
|
+
},
|
|
1524
|
+
"required": [
|
|
1525
|
+
"arpu",
|
|
1526
|
+
"gross_margin_pct",
|
|
1527
|
+
"monthly_churn_pct",
|
|
1528
|
+
"cac"
|
|
1529
|
+
]
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"name": "market-filter",
|
|
1534
|
+
"http_name": "market-filter",
|
|
1535
|
+
"description": "(0.005 USDC/call) Polymarket filter API / prediction market filter / market screener. Demand-matching route for filtering Polymarket markets by query, category, tag, liquidity, open/closed status, and sort order. Data-only public market research endpoint; no wallet filtering or trade execution.",
|
|
1536
|
+
"method": "POST",
|
|
1537
|
+
"input_schema": {
|
|
1538
|
+
"type": "object",
|
|
1539
|
+
"properties": {
|
|
1540
|
+
"query": {
|
|
1541
|
+
"type": "string"
|
|
1542
|
+
},
|
|
1543
|
+
"category": {
|
|
1544
|
+
"type": "string"
|
|
1545
|
+
},
|
|
1546
|
+
"tag": {
|
|
1547
|
+
"type": "string"
|
|
1548
|
+
},
|
|
1549
|
+
"active": {
|
|
1550
|
+
"type": "boolean"
|
|
1551
|
+
},
|
|
1552
|
+
"closed": {
|
|
1553
|
+
"type": "boolean"
|
|
1554
|
+
},
|
|
1555
|
+
"limit": {
|
|
1556
|
+
"type": "number"
|
|
1557
|
+
},
|
|
1558
|
+
"offset": {
|
|
1559
|
+
"type": "number"
|
|
1560
|
+
},
|
|
1561
|
+
"order": {
|
|
1562
|
+
"type": "string",
|
|
1563
|
+
"enum": [
|
|
1564
|
+
"volume24hr",
|
|
1565
|
+
"liquidity",
|
|
1566
|
+
"endDate",
|
|
1567
|
+
"startDate"
|
|
1568
|
+
]
|
|
1569
|
+
},
|
|
1570
|
+
"ascending": {
|
|
1571
|
+
"type": "boolean"
|
|
1572
|
+
},
|
|
1573
|
+
"min_liquidity": {
|
|
1574
|
+
"type": "number"
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
}
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"name": "markets",
|
|
1581
|
+
"http_name": "markets",
|
|
1582
|
+
"description": "(0.005 USDC/call) Markets API / Polymarket markets / prediction markets list and search. Exact buyer-demand slug backed by Polymarket gamma-api public market data. Filter active/closed markets by query, category, tag, liquidity, sort order, limit, and offset. Returns questions, slugs, outcomes, implied prices, liquidity, volume, and URLs. Data-only; no trading or order routing.",
|
|
1583
|
+
"method": "POST",
|
|
1584
|
+
"input_schema": {
|
|
1585
|
+
"type": "object",
|
|
1586
|
+
"properties": {
|
|
1587
|
+
"query": {
|
|
1588
|
+
"type": "string",
|
|
1589
|
+
"description": "Free-text filter applied to question, description, and slug."
|
|
1590
|
+
},
|
|
1591
|
+
"category": {
|
|
1592
|
+
"type": "string",
|
|
1593
|
+
"description": "Filter by Polymarket category substring."
|
|
1594
|
+
},
|
|
1595
|
+
"tag": {
|
|
1596
|
+
"type": "string",
|
|
1597
|
+
"description": "Polymarket tag slug filter."
|
|
1598
|
+
},
|
|
1599
|
+
"active": {
|
|
1600
|
+
"type": "boolean",
|
|
1601
|
+
"description": "Default true."
|
|
1602
|
+
},
|
|
1603
|
+
"closed": {
|
|
1604
|
+
"type": "boolean",
|
|
1605
|
+
"description": "Default false."
|
|
1606
|
+
},
|
|
1607
|
+
"limit": {
|
|
1608
|
+
"type": "number",
|
|
1609
|
+
"description": "1-100. Default 20."
|
|
1610
|
+
},
|
|
1611
|
+
"offset": {
|
|
1612
|
+
"type": "number",
|
|
1613
|
+
"description": "Pagination offset."
|
|
1614
|
+
},
|
|
1615
|
+
"order": {
|
|
1616
|
+
"type": "string",
|
|
1617
|
+
"enum": [
|
|
1618
|
+
"volume24hr",
|
|
1619
|
+
"liquidity",
|
|
1620
|
+
"endDate",
|
|
1621
|
+
"startDate"
|
|
1622
|
+
]
|
|
1623
|
+
},
|
|
1624
|
+
"ascending": {
|
|
1625
|
+
"type": "boolean"
|
|
1626
|
+
},
|
|
1627
|
+
"min_liquidity": {
|
|
1628
|
+
"type": "number",
|
|
1629
|
+
"description": "Minimum liquidity in USD."
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
"name": "merchant-cash-advance-score",
|
|
1636
|
+
"http_name": "merchant-cash-advance-score",
|
|
1637
|
+
"description": "(0.01 USDC/call) Merchant cash advance score API / MCA deal risk scorer / factor rate + holdback sustainability analysis / small business revenue financing score. Scores an MCA on revenue strength, factor-rate burden, holdback sustainability, revenue stability, and business tenure, returning a weighted score, grade, drivers, and recommendation.",
|
|
1638
|
+
"method": "POST",
|
|
1639
|
+
"input_schema": {
|
|
1640
|
+
"type": "object",
|
|
1641
|
+
"properties": {
|
|
1642
|
+
"monthly_revenue": {
|
|
1643
|
+
"type": "number",
|
|
1644
|
+
"description": "Average monthly revenue (USD)."
|
|
1645
|
+
},
|
|
1646
|
+
"factor_rate": {
|
|
1647
|
+
"type": "number",
|
|
1648
|
+
"description": "MCA factor rate, 1.0-2.0."
|
|
1649
|
+
},
|
|
1650
|
+
"holdback_pct": {
|
|
1651
|
+
"type": "number",
|
|
1652
|
+
"description": "Daily/weekly revenue holdback percent."
|
|
1653
|
+
},
|
|
1654
|
+
"revenue_volatility_pct": {
|
|
1655
|
+
"type": "number",
|
|
1656
|
+
"description": "Revenue volatility percent. Optional, default 20."
|
|
1657
|
+
},
|
|
1658
|
+
"months_in_business": {
|
|
1659
|
+
"type": "number",
|
|
1660
|
+
"description": "Months in business. Optional, default 24."
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"required": [
|
|
1664
|
+
"monthly_revenue",
|
|
1665
|
+
"factor_rate",
|
|
1666
|
+
"holdback_pct"
|
|
1667
|
+
]
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"name": "mortgage-payment-calculator",
|
|
1672
|
+
"http_name": "mortgage-payment-calculator",
|
|
1673
|
+
"description": "(0.01 USDC/call) Mortgage payment calculator API / PITI calculator / home affordability payment estimate / monthly principal interest tax insurance HOA PMI calculator. Computes loan amount, principal-and-interest payment, escrow components, total monthly payment, optional housing DTI, score, drivers, and recommendation.",
|
|
1674
|
+
"method": "POST",
|
|
1675
|
+
"input_schema": {
|
|
1676
|
+
"type": "object",
|
|
1677
|
+
"properties": {
|
|
1678
|
+
"home_price": {
|
|
1679
|
+
"type": "number",
|
|
1680
|
+
"description": "Purchase price or property value."
|
|
1681
|
+
},
|
|
1682
|
+
"down_payment": {
|
|
1683
|
+
"type": "number",
|
|
1684
|
+
"description": "Cash down payment. Default 0."
|
|
1685
|
+
},
|
|
1686
|
+
"loan_amount": {
|
|
1687
|
+
"type": "number",
|
|
1688
|
+
"description": "Optional explicit loan amount; defaults to home_price minus down_payment."
|
|
1689
|
+
},
|
|
1690
|
+
"annual_rate": {
|
|
1691
|
+
"type": "number",
|
|
1692
|
+
"description": "Annual mortgage rate as percent, e.g. 6.75."
|
|
1693
|
+
},
|
|
1694
|
+
"term_years": {
|
|
1695
|
+
"type": "number",
|
|
1696
|
+
"description": "Loan term in years."
|
|
1697
|
+
},
|
|
1698
|
+
"annual_property_tax": {
|
|
1699
|
+
"type": "number",
|
|
1700
|
+
"description": "Annual property tax. Default 0."
|
|
1701
|
+
},
|
|
1702
|
+
"annual_insurance": {
|
|
1703
|
+
"type": "number",
|
|
1704
|
+
"description": "Annual homeowners insurance. Default 0."
|
|
1705
|
+
},
|
|
1706
|
+
"monthly_hoa": {
|
|
1707
|
+
"type": "number",
|
|
1708
|
+
"description": "Monthly HOA dues. Default 0."
|
|
1709
|
+
},
|
|
1710
|
+
"monthly_pmi": {
|
|
1711
|
+
"type": "number",
|
|
1712
|
+
"description": "Monthly PMI. Default 0."
|
|
1713
|
+
},
|
|
1714
|
+
"gross_monthly_income": {
|
|
1715
|
+
"type": "number",
|
|
1716
|
+
"description": "Optional borrower gross monthly income for housing DTI."
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
"required": [
|
|
1720
|
+
"home_price",
|
|
1721
|
+
"annual_rate",
|
|
1722
|
+
"term_years"
|
|
1723
|
+
]
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"name": "mortgage-refinance-calculator",
|
|
1728
|
+
"http_name": "mortgage-refinance-calculator",
|
|
1729
|
+
"description": "(0.01 USDC/call) Mortgage refinance calculator / refi savings calculator / refinance break-even analysis. Same backend as refinance-analysis-calculator, surfaced for buyers comparing current loan balance, current rate, new rate, closing costs, monthly savings, and break-even months.",
|
|
1730
|
+
"method": "POST",
|
|
1731
|
+
"input_schema": {
|
|
1732
|
+
"type": "object",
|
|
1733
|
+
"properties": {
|
|
1734
|
+
"current_loan_balance": {
|
|
1735
|
+
"type": "number",
|
|
1736
|
+
"description": "Current unpaid principal balance."
|
|
1737
|
+
},
|
|
1738
|
+
"current_rate": {
|
|
1739
|
+
"type": "number",
|
|
1740
|
+
"description": "Current annual interest rate as percent, e.g. 7.25."
|
|
1741
|
+
},
|
|
1742
|
+
"new_rate": {
|
|
1743
|
+
"type": "number",
|
|
1744
|
+
"description": "Proposed annual interest rate as percent, e.g. 5.95."
|
|
1745
|
+
},
|
|
1746
|
+
"remaining_years": {
|
|
1747
|
+
"type": "number",
|
|
1748
|
+
"description": "Years remaining on current loan."
|
|
1749
|
+
},
|
|
1750
|
+
"new_term_years": {
|
|
1751
|
+
"type": "number",
|
|
1752
|
+
"description": "Proposed refinance term in years. Defaults to remaining_years."
|
|
1753
|
+
},
|
|
1754
|
+
"closing_costs": {
|
|
1755
|
+
"type": "number",
|
|
1756
|
+
"description": "Total refinance closing costs financed or paid out of pocket. Default 0."
|
|
1757
|
+
},
|
|
1758
|
+
"months_to_stay": {
|
|
1759
|
+
"type": "number",
|
|
1760
|
+
"description": "Expected holding period in months. Default is new term length."
|
|
1761
|
+
},
|
|
1762
|
+
"current_monthly_payment": {
|
|
1763
|
+
"type": "number",
|
|
1764
|
+
"description": "Optional actual current monthly payment override."
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1767
|
+
"required": [
|
|
1768
|
+
"current_loan_balance",
|
|
1769
|
+
"current_rate",
|
|
1770
|
+
"new_rate",
|
|
1771
|
+
"remaining_years"
|
|
1772
|
+
]
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"name": "patent-search",
|
|
1777
|
+
"http_name": "patent-search",
|
|
1778
|
+
"description": "(0.05 USDC/call) USPTO patent search / US patent database / Google Patents alternative / prior-art finder / freedom-to-operate research / inventor + assignee patent lookup / CPC classification browser / patent-filing date-range query / patent landscape feed. Searches issued US patents and published applications via the USPTO Open Data Portal. Filter by free-text keywords, inventor last-name, assignee/owner, CPC class (e.g. 'G06N' for AI/ML), filing-date floor/ceiling, and limit. Returns each match's application number, title, abstract, inventors, assignees, filing/publication dates, and CPC classifications, plus an optional Venice plain-English summary of the top result.",
|
|
1779
|
+
"method": "POST",
|
|
1780
|
+
"input_schema": {
|
|
1781
|
+
"type": "object",
|
|
1782
|
+
"properties": {
|
|
1783
|
+
"query": {
|
|
1784
|
+
"type": "string",
|
|
1785
|
+
"description": "Free-text search keywords (e.g. 'quantum error correction', 'mRNA vaccine')."
|
|
1786
|
+
},
|
|
1787
|
+
"inventor": {
|
|
1788
|
+
"type": "string",
|
|
1789
|
+
"description": "Inventor last-name filter (case-insensitive, e.g. 'Hassabis')."
|
|
1790
|
+
},
|
|
1791
|
+
"assignee": {
|
|
1792
|
+
"type": "string",
|
|
1793
|
+
"description": "Assignee/owner name filter (e.g. 'Google', 'IBM Corporation')."
|
|
1794
|
+
},
|
|
1795
|
+
"cpc": {
|
|
1796
|
+
"type": "string",
|
|
1797
|
+
"description": "CPC classification code prefix (e.g. 'G06N' for AI/ML, 'A61K' for pharmaceuticals)."
|
|
1798
|
+
},
|
|
1799
|
+
"date_from": {
|
|
1800
|
+
"type": "string",
|
|
1801
|
+
"description": "Filing-date floor in YYYY-MM-DD format. Inclusive."
|
|
1802
|
+
},
|
|
1803
|
+
"date_to": {
|
|
1804
|
+
"type": "string",
|
|
1805
|
+
"description": "Filing-date ceiling in YYYY-MM-DD format. Inclusive."
|
|
1806
|
+
},
|
|
1807
|
+
"limit": {
|
|
1808
|
+
"type": "number",
|
|
1809
|
+
"description": "Max patents to return. 1-50. Default 10 (most-recent-first)."
|
|
1810
|
+
},
|
|
1811
|
+
"summarize": {
|
|
1812
|
+
"type": "boolean",
|
|
1813
|
+
"description": "If true, attaches a Venice plain-English summary to the top result. Adds latency. Default false."
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1816
|
+
"required": [
|
|
1817
|
+
"query"
|
|
1818
|
+
]
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"name": "patent-search-api",
|
|
1823
|
+
"http_name": "patent-search-api",
|
|
1824
|
+
"description": "(0.05 USDC/call) Patent search API / USPTO patent lookup / prior-art search endpoint. Same USPTO Open Data backend as patent-search, indexed for agents querying keywords, inventor, assignee, CPC class, filing date range, abstracts, inventors, assignees, and publication numbers.",
|
|
1825
|
+
"method": "POST",
|
|
1826
|
+
"input_schema": {
|
|
1827
|
+
"type": "object",
|
|
1828
|
+
"properties": {
|
|
1829
|
+
"query": {
|
|
1830
|
+
"type": "string",
|
|
1831
|
+
"description": "Free-text search keywords (e.g. 'quantum error correction', 'mRNA vaccine')."
|
|
1832
|
+
},
|
|
1833
|
+
"inventor": {
|
|
1834
|
+
"type": "string",
|
|
1835
|
+
"description": "Inventor last-name filter (case-insensitive, e.g. 'Hassabis')."
|
|
1836
|
+
},
|
|
1837
|
+
"assignee": {
|
|
1838
|
+
"type": "string",
|
|
1839
|
+
"description": "Assignee/owner name filter (e.g. 'Google', 'IBM Corporation')."
|
|
1840
|
+
},
|
|
1841
|
+
"cpc": {
|
|
1842
|
+
"type": "string",
|
|
1843
|
+
"description": "CPC classification code prefix (e.g. 'G06N' for AI/ML, 'A61K' for pharmaceuticals)."
|
|
1844
|
+
},
|
|
1845
|
+
"date_from": {
|
|
1846
|
+
"type": "string",
|
|
1847
|
+
"description": "Filing-date floor in YYYY-MM-DD format. Inclusive."
|
|
1848
|
+
},
|
|
1849
|
+
"date_to": {
|
|
1850
|
+
"type": "string",
|
|
1851
|
+
"description": "Filing-date ceiling in YYYY-MM-DD format. Inclusive."
|
|
1852
|
+
},
|
|
1853
|
+
"limit": {
|
|
1854
|
+
"type": "number",
|
|
1855
|
+
"description": "Max patents to return. 1-50. Default 10 (most-recent-first)."
|
|
1856
|
+
},
|
|
1857
|
+
"summarize": {
|
|
1858
|
+
"type": "boolean",
|
|
1859
|
+
"description": "If true, attaches a Venice plain-English summary to the top result. Adds latency. Default false."
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
"required": [
|
|
1863
|
+
"query"
|
|
1864
|
+
]
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"name": "piti-calculator",
|
|
1869
|
+
"http_name": "piti-calculator",
|
|
1870
|
+
"description": "(0.01 USDC/call) PITI calculator / principal interest tax insurance payment API / mortgage payment estimate. Same backend as mortgage-payment-calculator, exposed under the short real-estate finance keyword for monthly housing payment workflows.",
|
|
1871
|
+
"method": "POST",
|
|
1872
|
+
"input_schema": {
|
|
1873
|
+
"type": "object",
|
|
1874
|
+
"properties": {
|
|
1875
|
+
"home_price": {
|
|
1876
|
+
"type": "number",
|
|
1877
|
+
"description": "Purchase price or property value."
|
|
1878
|
+
},
|
|
1879
|
+
"down_payment": {
|
|
1880
|
+
"type": "number",
|
|
1881
|
+
"description": "Cash down payment. Default 0."
|
|
1882
|
+
},
|
|
1883
|
+
"loan_amount": {
|
|
1884
|
+
"type": "number",
|
|
1885
|
+
"description": "Optional explicit loan amount; defaults to home_price minus down_payment."
|
|
1886
|
+
},
|
|
1887
|
+
"annual_rate": {
|
|
1888
|
+
"type": "number",
|
|
1889
|
+
"description": "Annual mortgage rate as percent, e.g. 6.75."
|
|
1890
|
+
},
|
|
1891
|
+
"term_years": {
|
|
1892
|
+
"type": "number",
|
|
1893
|
+
"description": "Loan term in years."
|
|
1894
|
+
},
|
|
1895
|
+
"annual_property_tax": {
|
|
1896
|
+
"type": "number",
|
|
1897
|
+
"description": "Annual property tax. Default 0."
|
|
1898
|
+
},
|
|
1899
|
+
"annual_insurance": {
|
|
1900
|
+
"type": "number",
|
|
1901
|
+
"description": "Annual homeowners insurance. Default 0."
|
|
1902
|
+
},
|
|
1903
|
+
"monthly_hoa": {
|
|
1904
|
+
"type": "number",
|
|
1905
|
+
"description": "Monthly HOA dues. Default 0."
|
|
1906
|
+
},
|
|
1907
|
+
"monthly_pmi": {
|
|
1908
|
+
"type": "number",
|
|
1909
|
+
"description": "Monthly PMI. Default 0."
|
|
1910
|
+
},
|
|
1911
|
+
"gross_monthly_income": {
|
|
1912
|
+
"type": "number",
|
|
1913
|
+
"description": "Optional borrower gross monthly income for housing DTI."
|
|
1914
|
+
}
|
|
1915
|
+
},
|
|
1916
|
+
"required": [
|
|
1917
|
+
"home_price",
|
|
1918
|
+
"annual_rate",
|
|
1919
|
+
"term_years"
|
|
1920
|
+
]
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"name": "polymarket-filter",
|
|
1925
|
+
"http_name": "polymarket-filter",
|
|
1926
|
+
"description": "(0.005 USDC/call) Polymarket filter API / filter prediction markets by category, query, tag, status, liquidity, and sort order. Market-data filter only; it does not filter wallets by trade history.",
|
|
1927
|
+
"method": "POST",
|
|
1928
|
+
"input_schema": {
|
|
1929
|
+
"type": "object",
|
|
1930
|
+
"properties": {
|
|
1931
|
+
"query": {
|
|
1932
|
+
"type": "string"
|
|
1933
|
+
},
|
|
1934
|
+
"category": {
|
|
1935
|
+
"type": "string"
|
|
1936
|
+
},
|
|
1937
|
+
"tag": {
|
|
1938
|
+
"type": "string"
|
|
1939
|
+
},
|
|
1940
|
+
"active": {
|
|
1941
|
+
"type": "boolean"
|
|
1942
|
+
},
|
|
1943
|
+
"closed": {
|
|
1944
|
+
"type": "boolean"
|
|
1945
|
+
},
|
|
1946
|
+
"limit": {
|
|
1947
|
+
"type": "number"
|
|
1948
|
+
},
|
|
1949
|
+
"offset": {
|
|
1950
|
+
"type": "number"
|
|
1951
|
+
},
|
|
1952
|
+
"order": {
|
|
1953
|
+
"type": "string",
|
|
1954
|
+
"enum": [
|
|
1955
|
+
"volume24hr",
|
|
1956
|
+
"liquidity",
|
|
1957
|
+
"endDate",
|
|
1958
|
+
"startDate"
|
|
1959
|
+
]
|
|
1960
|
+
},
|
|
1961
|
+
"ascending": {
|
|
1962
|
+
"type": "boolean"
|
|
1963
|
+
},
|
|
1964
|
+
"min_liquidity": {
|
|
1965
|
+
"type": "number"
|
|
1966
|
+
}
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"name": "polymarket-kalshi-arbitrage",
|
|
1972
|
+
"http_name": "polymarket-kalshi-arbitrage",
|
|
1973
|
+
"description": "(0.02 USDC/call) Polymarket × Kalshi arbitrage scanner / cross-venue prediction market spread / event price arbitrage detector / Polymarket vs Kalshi comparison. Pulls active markets from both venues, fuzzy-matches by title (Jaccard token overlap), and reports pairs whose implied YES probabilities diverge beyond a configurable threshold. Output is data-only: spread metrics, no trade execution. Useful for cross-market sentiment timing and signal triangulation.",
|
|
1974
|
+
"method": "POST",
|
|
1975
|
+
"input_schema": {
|
|
1976
|
+
"type": "object",
|
|
1977
|
+
"properties": {
|
|
1978
|
+
"min_spread": {
|
|
1979
|
+
"type": "number",
|
|
1980
|
+
"description": "Minimum |p_poly - p_kalshi| spread to report. 0-1. Default 0.05."
|
|
1981
|
+
},
|
|
1982
|
+
"min_match_score": {
|
|
1983
|
+
"type": "number",
|
|
1984
|
+
"description": "Minimum Jaccard token overlap to treat two titles as the same event. 0-1. Default 0.4."
|
|
1985
|
+
},
|
|
1986
|
+
"scan_limit": {
|
|
1987
|
+
"type": "number",
|
|
1988
|
+
"description": "Max markets to pull from each venue. 10-500. Default 100."
|
|
1989
|
+
},
|
|
1990
|
+
"category": {
|
|
1991
|
+
"type": "string",
|
|
1992
|
+
"description": "Optional Polymarket category filter (substring)."
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"name": "polymarket-leaderboard",
|
|
1999
|
+
"http_name": "polymarket-leaderboard",
|
|
2000
|
+
"description": "(0.005 USDC/call) Polymarket leaderboard / top traders / profit leaderboard / Polymarket whales / volume leaderboard / prediction market rankings. Returns the top accounts by realized profit OR notional volume over 1d/1w/1m/all-time windows. Includes proxy wallet, pseudonym, bio, amount in USD. DATA only.",
|
|
2001
|
+
"method": "POST",
|
|
2002
|
+
"input_schema": {
|
|
2003
|
+
"type": "object",
|
|
2004
|
+
"properties": {
|
|
2005
|
+
"metric": {
|
|
2006
|
+
"type": "string",
|
|
2007
|
+
"enum": [
|
|
2008
|
+
"profit",
|
|
2009
|
+
"volume"
|
|
2010
|
+
],
|
|
2011
|
+
"description": "Default 'profit'."
|
|
2012
|
+
},
|
|
2013
|
+
"window": {
|
|
2014
|
+
"type": "string",
|
|
2015
|
+
"enum": [
|
|
2016
|
+
"1d",
|
|
2017
|
+
"1w",
|
|
2018
|
+
"1m",
|
|
2019
|
+
"all"
|
|
2020
|
+
],
|
|
2021
|
+
"description": "Default '1d'."
|
|
2022
|
+
},
|
|
2023
|
+
"limit": {
|
|
2024
|
+
"type": "number",
|
|
2025
|
+
"description": "1-200. Default 25."
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"name": "polymarket-markets",
|
|
2032
|
+
"http_name": "polymarket-markets",
|
|
2033
|
+
"description": "(0.005 USDC/call) Polymarket markets / prediction market data / Polymarket API / list active prediction markets / crypto-settled betting odds / event odds / Polymarket browse. Pulls live Polymarket markets from gamma-api with filter by category, tag, free-text query, minimum liquidity. Returns market question, current YES/NO outcome prices (implied probabilities), 24-hr volume, liquidity, end date. DATA-ONLY — no trading. Useful for agent forecasting research and arbitrage detection.",
|
|
2034
|
+
"method": "POST",
|
|
2035
|
+
"input_schema": {
|
|
2036
|
+
"type": "object",
|
|
2037
|
+
"properties": {
|
|
2038
|
+
"query": {
|
|
2039
|
+
"type": "string",
|
|
2040
|
+
"description": "Free-text filter applied to question + description + slug. Case-insensitive substring match against the current page."
|
|
2041
|
+
},
|
|
2042
|
+
"category": {
|
|
2043
|
+
"type": "string",
|
|
2044
|
+
"description": "Filter by Polymarket category (substring match, e.g. 'Sports', 'Crypto', 'Politics')."
|
|
2045
|
+
},
|
|
2046
|
+
"tag": {
|
|
2047
|
+
"type": "string",
|
|
2048
|
+
"description": "Polymarket tag slug filter, passed through to upstream."
|
|
2049
|
+
},
|
|
2050
|
+
"active": {
|
|
2051
|
+
"type": "boolean",
|
|
2052
|
+
"description": "Default true. Pass false to include inactive markets."
|
|
2053
|
+
},
|
|
2054
|
+
"closed": {
|
|
2055
|
+
"type": "boolean",
|
|
2056
|
+
"description": "Default false. Pass true to include closed markets."
|
|
2057
|
+
},
|
|
2058
|
+
"limit": {
|
|
2059
|
+
"type": "number",
|
|
2060
|
+
"description": "1-100. Default 20."
|
|
2061
|
+
},
|
|
2062
|
+
"offset": {
|
|
2063
|
+
"type": "number",
|
|
2064
|
+
"description": "Pagination offset."
|
|
2065
|
+
},
|
|
2066
|
+
"order": {
|
|
2067
|
+
"type": "string",
|
|
2068
|
+
"enum": [
|
|
2069
|
+
"volume24hr",
|
|
2070
|
+
"liquidity",
|
|
2071
|
+
"endDate",
|
|
2072
|
+
"startDate"
|
|
2073
|
+
],
|
|
2074
|
+
"description": "Sort field."
|
|
2075
|
+
},
|
|
2076
|
+
"ascending": {
|
|
2077
|
+
"type": "boolean",
|
|
2078
|
+
"description": "Sort direction."
|
|
2079
|
+
},
|
|
2080
|
+
"min_liquidity": {
|
|
2081
|
+
"type": "number",
|
|
2082
|
+
"description": "Minimum liquidity in USD."
|
|
2083
|
+
}
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"name": "polymarket-search",
|
|
2089
|
+
"http_name": "polymarket-search",
|
|
2090
|
+
"description": "(0.005 USDC/call) Polymarket search API / prediction market search / market query endpoint. Searches the returned Polymarket market page by question, description, and slug, with optional category/tag/liquidity filters. Data-only; no betting, trading, or order execution.",
|
|
2091
|
+
"method": "POST",
|
|
2092
|
+
"input_schema": {
|
|
2093
|
+
"type": "object",
|
|
2094
|
+
"properties": {
|
|
2095
|
+
"query": {
|
|
2096
|
+
"type": "string"
|
|
2097
|
+
},
|
|
2098
|
+
"category": {
|
|
2099
|
+
"type": "string"
|
|
2100
|
+
},
|
|
2101
|
+
"tag": {
|
|
2102
|
+
"type": "string"
|
|
2103
|
+
},
|
|
2104
|
+
"active": {
|
|
2105
|
+
"type": "boolean"
|
|
2106
|
+
},
|
|
2107
|
+
"closed": {
|
|
2108
|
+
"type": "boolean"
|
|
2109
|
+
},
|
|
2110
|
+
"limit": {
|
|
2111
|
+
"type": "number"
|
|
2112
|
+
},
|
|
2113
|
+
"offset": {
|
|
2114
|
+
"type": "number"
|
|
2115
|
+
},
|
|
2116
|
+
"min_liquidity": {
|
|
2117
|
+
"type": "number"
|
|
2118
|
+
}
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"name": "polymarket-trades",
|
|
2124
|
+
"http_name": "polymarket-trades",
|
|
2125
|
+
"description": "(0.005 USDC/call) Polymarket trades / recent prediction market trades / on-chain bet history / Polymarket trade feed / Polymarket data API. Pulls recent trades from a Polymarket market (by slug or conditionId) or for a specific wallet. Returns side, size, price, timestamp, trader pseudonym, on-chain tx hash, and computed notional USD. DATA only.",
|
|
2126
|
+
"method": "POST",
|
|
2127
|
+
"input_schema": {
|
|
2128
|
+
"type": "object",
|
|
2129
|
+
"properties": {
|
|
2130
|
+
"market": {
|
|
2131
|
+
"type": "string",
|
|
2132
|
+
"description": "Market slug (e.g. 'will-x-happen') OR conditionId (0x...). Optional."
|
|
2133
|
+
},
|
|
2134
|
+
"user": {
|
|
2135
|
+
"type": "string",
|
|
2136
|
+
"description": "Polymarket proxy wallet address to filter by. Optional."
|
|
2137
|
+
},
|
|
2138
|
+
"limit": {
|
|
2139
|
+
"type": "number",
|
|
2140
|
+
"description": "1-500. Default 50."
|
|
2141
|
+
},
|
|
2142
|
+
"offset": {
|
|
2143
|
+
"type": "number",
|
|
2144
|
+
"description": "Pagination offset."
|
|
2145
|
+
},
|
|
2146
|
+
"side": {
|
|
2147
|
+
"type": "string",
|
|
2148
|
+
"enum": [
|
|
2149
|
+
"BUY",
|
|
2150
|
+
"SELL"
|
|
2151
|
+
],
|
|
2152
|
+
"description": "Filter by side."
|
|
2153
|
+
},
|
|
2154
|
+
"after_ts": {
|
|
2155
|
+
"type": "number",
|
|
2156
|
+
"description": "Unix seconds. Only trades after."
|
|
2157
|
+
},
|
|
2158
|
+
"before_ts": {
|
|
2159
|
+
"type": "number",
|
|
2160
|
+
"description": "Unix seconds. Only trades before."
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"name": "prediction-markets",
|
|
2167
|
+
"http_name": "prediction-markets",
|
|
2168
|
+
"description": "(0.005 USDC/call) Prediction markets API / event odds / Polymarket market data. Lists and searches active public Polymarket markets with outcome probabilities, liquidity, volume, end dates, and URLs. Data-only market research; no trade signals, custody, or execution.",
|
|
2169
|
+
"method": "POST",
|
|
2170
|
+
"input_schema": {
|
|
2171
|
+
"type": "object",
|
|
2172
|
+
"properties": {
|
|
2173
|
+
"query": {
|
|
2174
|
+
"type": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"category": {
|
|
2177
|
+
"type": "string"
|
|
2178
|
+
},
|
|
2179
|
+
"tag": {
|
|
2180
|
+
"type": "string"
|
|
2181
|
+
},
|
|
2182
|
+
"active": {
|
|
2183
|
+
"type": "boolean"
|
|
2184
|
+
},
|
|
2185
|
+
"closed": {
|
|
2186
|
+
"type": "boolean"
|
|
2187
|
+
},
|
|
2188
|
+
"limit": {
|
|
2189
|
+
"type": "number"
|
|
2190
|
+
},
|
|
2191
|
+
"offset": {
|
|
2192
|
+
"type": "number"
|
|
2193
|
+
},
|
|
2194
|
+
"min_liquidity": {
|
|
2195
|
+
"type": "number"
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"name": "project-finance-score",
|
|
2202
|
+
"http_name": "project-finance-score",
|
|
2203
|
+
"description": "(0.01 USDC/call) Project finance score API / infrastructure finance structure quality / DSCR leverage offtake construction-risk calculator. Scores debt service coverage, debt-to-equity leverage, offtake contract quality, construction risk, and sponsor strength. Returns 0-100 bankability score, grade, recommendation, metrics, and drivers.",
|
|
2204
|
+
"method": "POST",
|
|
2205
|
+
"input_schema": {
|
|
2206
|
+
"type": "object",
|
|
2207
|
+
"properties": {
|
|
2208
|
+
"dscr": {
|
|
2209
|
+
"type": "number",
|
|
2210
|
+
"description": "Debt service coverage ratio, e.g. 1.42."
|
|
2211
|
+
},
|
|
2212
|
+
"debt_to_equity": {
|
|
2213
|
+
"type": "number",
|
|
2214
|
+
"description": "Debt/equity ratio, e.g. 2.1."
|
|
2215
|
+
},
|
|
2216
|
+
"offtake_score": {
|
|
2217
|
+
"type": "number",
|
|
2218
|
+
"description": "0-100 offtake contract and counterparty quality."
|
|
2219
|
+
},
|
|
2220
|
+
"construction_risk_score": {
|
|
2221
|
+
"type": "number",
|
|
2222
|
+
"description": "0-100 construction risk; higher means riskier. Default 40."
|
|
2223
|
+
},
|
|
2224
|
+
"sponsor_strength": {
|
|
2225
|
+
"type": "number",
|
|
2226
|
+
"description": "0-100 sponsor execution and balance-sheet strength. Default 70."
|
|
2227
|
+
}
|
|
2228
|
+
},
|
|
2229
|
+
"required": [
|
|
2230
|
+
"dscr",
|
|
2231
|
+
"debt_to_equity",
|
|
2232
|
+
"offtake_score"
|
|
2233
|
+
]
|
|
2234
|
+
}
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"name": "project-finance-score-api",
|
|
2238
|
+
"http_name": "project-finance-score-api",
|
|
2239
|
+
"description": "(0.01 USDC/call) Project finance score API / DSCR project risk scoring / offtake and construction risk calculator. Same model as project-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
2240
|
+
"method": "POST",
|
|
2241
|
+
"input_schema": {
|
|
2242
|
+
"type": "object",
|
|
2243
|
+
"properties": {
|
|
2244
|
+
"dscr": {
|
|
2245
|
+
"type": "number",
|
|
2246
|
+
"description": "Debt service coverage ratio, e.g. 1.42."
|
|
2247
|
+
},
|
|
2248
|
+
"debt_to_equity": {
|
|
2249
|
+
"type": "number",
|
|
2250
|
+
"description": "Debt/equity ratio, e.g. 2.1."
|
|
2251
|
+
},
|
|
2252
|
+
"offtake_score": {
|
|
2253
|
+
"type": "number",
|
|
2254
|
+
"description": "0-100 offtake contract and counterparty quality."
|
|
2255
|
+
},
|
|
2256
|
+
"construction_risk_score": {
|
|
2257
|
+
"type": "number",
|
|
2258
|
+
"description": "0-100 construction risk; higher means riskier. Default 40."
|
|
2259
|
+
},
|
|
2260
|
+
"sponsor_strength": {
|
|
2261
|
+
"type": "number",
|
|
2262
|
+
"description": "0-100 sponsor execution and balance-sheet strength. Default 70."
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
2265
|
+
"required": [
|
|
2266
|
+
"dscr",
|
|
2267
|
+
"debt_to_equity",
|
|
2268
|
+
"offtake_score"
|
|
2269
|
+
]
|
|
2270
|
+
}
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
"name": "purchase-order-finance-score",
|
|
2274
|
+
"http_name": "purchase-order-finance-score",
|
|
2275
|
+
"description": "(0.01 USDC/call) Purchase order finance score API / PO financing risk scorer / supplier reliability + buyer credit + margin analysis. Scores a PO financing deal on end-buyer credit, supplier reliability, margin cushion, and fulfillment speed, returning a weighted score, grade, drivers, and recommendation.",
|
|
2276
|
+
"method": "POST",
|
|
2277
|
+
"input_schema": {
|
|
2278
|
+
"type": "object",
|
|
2279
|
+
"properties": {
|
|
2280
|
+
"po_value": {
|
|
2281
|
+
"type": "number",
|
|
2282
|
+
"description": "Purchase order value (USD)."
|
|
2283
|
+
},
|
|
2284
|
+
"supplier_reliability_score": {
|
|
2285
|
+
"type": "number",
|
|
2286
|
+
"description": "Supplier delivery reliability, 0-100."
|
|
2287
|
+
},
|
|
2288
|
+
"buyer_credit_score": {
|
|
2289
|
+
"type": "number",
|
|
2290
|
+
"description": "End-buyer credit quality, 0-100."
|
|
2291
|
+
},
|
|
2292
|
+
"gross_margin_pct": {
|
|
2293
|
+
"type": "number",
|
|
2294
|
+
"description": "Gross margin on the order percent."
|
|
2295
|
+
},
|
|
2296
|
+
"lead_time_days": {
|
|
2297
|
+
"type": "number",
|
|
2298
|
+
"description": "Fulfillment lead time in days. Optional, default 45."
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
"required": [
|
|
2302
|
+
"po_value",
|
|
2303
|
+
"supplier_reliability_score",
|
|
2304
|
+
"buyer_credit_score",
|
|
2305
|
+
"gross_margin_pct"
|
|
2306
|
+
]
|
|
2307
|
+
}
|
|
2308
|
+
},
|
|
2309
|
+
{
|
|
2310
|
+
"name": "refi-break-even-calculator",
|
|
2311
|
+
"http_name": "refi-break-even-calculator",
|
|
2312
|
+
"description": "(0.01 USDC/call) Refi break-even calculator / closing-cost payback calculator / mortgage refinance savings API. Same backend as refinance-analysis-calculator, focused on break-even months, net savings over hold horizon, and payment delta.",
|
|
2313
|
+
"method": "POST",
|
|
2314
|
+
"input_schema": {
|
|
2315
|
+
"type": "object",
|
|
2316
|
+
"properties": {
|
|
2317
|
+
"current_loan_balance": {
|
|
2318
|
+
"type": "number",
|
|
2319
|
+
"description": "Current unpaid principal balance."
|
|
2320
|
+
},
|
|
2321
|
+
"current_rate": {
|
|
2322
|
+
"type": "number",
|
|
2323
|
+
"description": "Current annual interest rate as percent, e.g. 7.25."
|
|
2324
|
+
},
|
|
2325
|
+
"new_rate": {
|
|
2326
|
+
"type": "number",
|
|
2327
|
+
"description": "Proposed annual interest rate as percent, e.g. 5.95."
|
|
2328
|
+
},
|
|
2329
|
+
"remaining_years": {
|
|
2330
|
+
"type": "number",
|
|
2331
|
+
"description": "Years remaining on current loan."
|
|
2332
|
+
},
|
|
2333
|
+
"new_term_years": {
|
|
2334
|
+
"type": "number",
|
|
2335
|
+
"description": "Proposed refinance term in years. Defaults to remaining_years."
|
|
2336
|
+
},
|
|
2337
|
+
"closing_costs": {
|
|
2338
|
+
"type": "number",
|
|
2339
|
+
"description": "Total refinance closing costs financed or paid out of pocket. Default 0."
|
|
2340
|
+
},
|
|
2341
|
+
"months_to_stay": {
|
|
2342
|
+
"type": "number",
|
|
2343
|
+
"description": "Expected holding period in months. Default is new term length."
|
|
2344
|
+
},
|
|
2345
|
+
"current_monthly_payment": {
|
|
2346
|
+
"type": "number",
|
|
2347
|
+
"description": "Optional actual current monthly payment override."
|
|
2348
|
+
}
|
|
2349
|
+
},
|
|
2350
|
+
"required": [
|
|
2351
|
+
"current_loan_balance",
|
|
2352
|
+
"current_rate",
|
|
2353
|
+
"new_rate",
|
|
2354
|
+
"remaining_years"
|
|
2355
|
+
]
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
"name": "refinance-analysis-calculator",
|
|
2360
|
+
"http_name": "refinance-analysis-calculator",
|
|
2361
|
+
"description": "(0.01 USDC/call) Refinance analysis calculator / mortgage refinance benefits / rate-and-term refi calculator / break-even month calculator / closing-cost payback / monthly payment savings. Compares current loan against proposed refinance, computes current and new payment, monthly savings, break-even months, gross and net savings over hold horizon, then scores whether the refi economics are attractive.",
|
|
2362
|
+
"method": "POST",
|
|
2363
|
+
"input_schema": {
|
|
2364
|
+
"type": "object",
|
|
2365
|
+
"properties": {
|
|
2366
|
+
"current_loan_balance": {
|
|
2367
|
+
"type": "number",
|
|
2368
|
+
"description": "Current unpaid principal balance."
|
|
2369
|
+
},
|
|
2370
|
+
"current_rate": {
|
|
2371
|
+
"type": "number",
|
|
2372
|
+
"description": "Current annual interest rate as percent, e.g. 7.25."
|
|
2373
|
+
},
|
|
2374
|
+
"new_rate": {
|
|
2375
|
+
"type": "number",
|
|
2376
|
+
"description": "Proposed annual interest rate as percent, e.g. 5.95."
|
|
2377
|
+
},
|
|
2378
|
+
"remaining_years": {
|
|
2379
|
+
"type": "number",
|
|
2380
|
+
"description": "Years remaining on current loan."
|
|
2381
|
+
},
|
|
2382
|
+
"new_term_years": {
|
|
2383
|
+
"type": "number",
|
|
2384
|
+
"description": "Proposed refinance term in years. Defaults to remaining_years."
|
|
2385
|
+
},
|
|
2386
|
+
"closing_costs": {
|
|
2387
|
+
"type": "number",
|
|
2388
|
+
"description": "Total refinance closing costs financed or paid out of pocket. Default 0."
|
|
2389
|
+
},
|
|
2390
|
+
"months_to_stay": {
|
|
2391
|
+
"type": "number",
|
|
2392
|
+
"description": "Expected holding period in months. Default is new term length."
|
|
2393
|
+
},
|
|
2394
|
+
"current_monthly_payment": {
|
|
2395
|
+
"type": "number",
|
|
2396
|
+
"description": "Optional actual current monthly payment override."
|
|
2397
|
+
}
|
|
2398
|
+
},
|
|
2399
|
+
"required": [
|
|
2400
|
+
"current_loan_balance",
|
|
2401
|
+
"current_rate",
|
|
2402
|
+
"new_rate",
|
|
2403
|
+
"remaining_years"
|
|
2404
|
+
]
|
|
2405
|
+
}
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "refinance-analysis-calculator-api",
|
|
2409
|
+
"http_name": "refinance-analysis-calculator-api",
|
|
2410
|
+
"description": "(0.01 USDC/call) Refinance analysis calculator API / mortgage refinance API / refi break-even API. Same calculator as refinance-analysis-calculator, exposed under the buyer keyword used in demand searches.",
|
|
2411
|
+
"method": "POST",
|
|
2412
|
+
"input_schema": {
|
|
2413
|
+
"type": "object",
|
|
2414
|
+
"properties": {
|
|
2415
|
+
"current_loan_balance": {
|
|
2416
|
+
"type": "number",
|
|
2417
|
+
"description": "Current unpaid principal balance."
|
|
2418
|
+
},
|
|
2419
|
+
"current_rate": {
|
|
2420
|
+
"type": "number",
|
|
2421
|
+
"description": "Current annual interest rate as percent, e.g. 7.25."
|
|
2422
|
+
},
|
|
2423
|
+
"new_rate": {
|
|
2424
|
+
"type": "number",
|
|
2425
|
+
"description": "Proposed annual interest rate as percent, e.g. 5.95."
|
|
2426
|
+
},
|
|
2427
|
+
"remaining_years": {
|
|
2428
|
+
"type": "number",
|
|
2429
|
+
"description": "Years remaining on current loan."
|
|
2430
|
+
},
|
|
2431
|
+
"new_term_years": {
|
|
2432
|
+
"type": "number",
|
|
2433
|
+
"description": "Proposed refinance term in years. Defaults to remaining_years."
|
|
2434
|
+
},
|
|
2435
|
+
"closing_costs": {
|
|
2436
|
+
"type": "number",
|
|
2437
|
+
"description": "Total refinance closing costs financed or paid out of pocket. Default 0."
|
|
2438
|
+
},
|
|
2439
|
+
"months_to_stay": {
|
|
2440
|
+
"type": "number",
|
|
2441
|
+
"description": "Expected holding period in months. Default is new term length."
|
|
2442
|
+
},
|
|
2443
|
+
"current_monthly_payment": {
|
|
2444
|
+
"type": "number",
|
|
2445
|
+
"description": "Optional actual current monthly payment override."
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
"required": [
|
|
2449
|
+
"current_loan_balance",
|
|
2450
|
+
"current_rate",
|
|
2451
|
+
"new_rate",
|
|
2452
|
+
"remaining_years"
|
|
2453
|
+
]
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
"name": "revenue-based-financing-score",
|
|
2458
|
+
"http_name": "revenue-based-financing-score",
|
|
2459
|
+
"description": "(0.01 USDC/call) Revenue based financing score API / RBF deal scorer / recurring-revenue lending risk score / MRR + growth + cap-multiple analysis. Scores an RBF facility on revenue scale, growth, margin quality, repayment burden (cap multiple), and retention, returning a weighted score, grade, drivers, and recommendation.",
|
|
2460
|
+
"method": "POST",
|
|
2461
|
+
"input_schema": {
|
|
2462
|
+
"type": "object",
|
|
2463
|
+
"properties": {
|
|
2464
|
+
"mrr": {
|
|
2465
|
+
"type": "number",
|
|
2466
|
+
"description": "Monthly recurring revenue (USD)."
|
|
2467
|
+
},
|
|
2468
|
+
"growth_rate_pct": {
|
|
2469
|
+
"type": "number",
|
|
2470
|
+
"description": "Monthly revenue growth percent."
|
|
2471
|
+
},
|
|
2472
|
+
"gross_margin_pct": {
|
|
2473
|
+
"type": "number",
|
|
2474
|
+
"description": "Gross margin percent."
|
|
2475
|
+
},
|
|
2476
|
+
"revenue_multiple": {
|
|
2477
|
+
"type": "number",
|
|
2478
|
+
"description": "Repayment cap as a multiple of advanced amount."
|
|
2479
|
+
},
|
|
2480
|
+
"churn_rate_pct": {
|
|
2481
|
+
"type": "number",
|
|
2482
|
+
"description": "Monthly revenue churn percent. Optional, default 5."
|
|
2483
|
+
}
|
|
2484
|
+
},
|
|
2485
|
+
"required": [
|
|
2486
|
+
"mrr",
|
|
2487
|
+
"growth_rate_pct",
|
|
2488
|
+
"gross_margin_pct",
|
|
2489
|
+
"revenue_multiple"
|
|
2490
|
+
]
|
|
2491
|
+
}
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"name": "roi-calculator",
|
|
2495
|
+
"http_name": "roi-calculator",
|
|
2496
|
+
"description": "(0.01 USDC/call) ROI calculator API / return on investment / CAGR / money multiple calculator. Takes initial investment plus final value or net profit and returns ROI percent, annualized return, money multiple, score, drivers, and recommendation.",
|
|
2497
|
+
"method": "POST",
|
|
2498
|
+
"input_schema": {
|
|
2499
|
+
"type": "object",
|
|
2500
|
+
"properties": {
|
|
2501
|
+
"initial_investment": {
|
|
2502
|
+
"type": "number",
|
|
2503
|
+
"description": "Initial invested capital."
|
|
2504
|
+
},
|
|
2505
|
+
"final_value": {
|
|
2506
|
+
"type": "number",
|
|
2507
|
+
"description": "Ending value. Optional if net_profit is supplied."
|
|
2508
|
+
},
|
|
2509
|
+
"net_profit": {
|
|
2510
|
+
"type": "number",
|
|
2511
|
+
"description": "Net profit. Optional if final_value is supplied."
|
|
2512
|
+
},
|
|
2513
|
+
"years": {
|
|
2514
|
+
"type": "number",
|
|
2515
|
+
"description": "Holding period in years. Default 1."
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2518
|
+
"required": [
|
|
2519
|
+
"initial_investment"
|
|
2520
|
+
]
|
|
2521
|
+
}
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"name": "rule-of-40-calculator",
|
|
2525
|
+
"http_name": "rule-of-40-calculator",
|
|
2526
|
+
"description": "(0.01 USDC/call) Rule of 40 calculator / SaaS benchmark score / ARR growth plus EBITDA margin. Same calculator as saas-metrics-score.",
|
|
2527
|
+
"method": "POST",
|
|
2528
|
+
"input_schema": {
|
|
2529
|
+
"type": "object",
|
|
2530
|
+
"properties": {
|
|
2531
|
+
"arr": {
|
|
2532
|
+
"type": "number",
|
|
2533
|
+
"description": "Annual recurring revenue."
|
|
2534
|
+
},
|
|
2535
|
+
"growth_rate_pct": {
|
|
2536
|
+
"type": "number",
|
|
2537
|
+
"description": "Annual ARR growth rate percent."
|
|
2538
|
+
},
|
|
2539
|
+
"gross_margin_pct": {
|
|
2540
|
+
"type": "number",
|
|
2541
|
+
"description": "Gross margin percent."
|
|
2542
|
+
},
|
|
2543
|
+
"net_revenue_retention_pct": {
|
|
2544
|
+
"type": "number",
|
|
2545
|
+
"description": "Net revenue retention percent."
|
|
2546
|
+
},
|
|
2547
|
+
"burn_multiple": {
|
|
2548
|
+
"type": "number",
|
|
2549
|
+
"description": "Net burn divided by net new ARR. Optional."
|
|
2550
|
+
},
|
|
2551
|
+
"magic_number": {
|
|
2552
|
+
"type": "number",
|
|
2553
|
+
"description": "Sales efficiency magic number. Optional."
|
|
2554
|
+
},
|
|
2555
|
+
"ebitda_margin_pct": {
|
|
2556
|
+
"type": "number",
|
|
2557
|
+
"description": "EBITDA margin percent for rule-of-40. Defaults to 0 when omitted."
|
|
2558
|
+
},
|
|
2559
|
+
"logo_churn_pct": {
|
|
2560
|
+
"type": "number",
|
|
2561
|
+
"description": "Annual logo churn percent. Optional."
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2564
|
+
"required": [
|
|
2565
|
+
"arr",
|
|
2566
|
+
"growth_rate_pct",
|
|
2567
|
+
"gross_margin_pct",
|
|
2568
|
+
"net_revenue_retention_pct"
|
|
2569
|
+
]
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
"name": "saas-benchmark-score",
|
|
2574
|
+
"http_name": "saas-benchmark-score",
|
|
2575
|
+
"description": "(0.01 USDC/call) SaaS benchmark score API / operating metrics grader / ARR growth NRR gross margin burn multiple magic number analysis. Same backend as saas-metrics-score, exposed for SaaS diligence agents.",
|
|
2576
|
+
"method": "POST",
|
|
2577
|
+
"input_schema": {
|
|
2578
|
+
"type": "object",
|
|
2579
|
+
"properties": {
|
|
2580
|
+
"arr": {
|
|
2581
|
+
"type": "number",
|
|
2582
|
+
"description": "Annual recurring revenue."
|
|
2583
|
+
},
|
|
2584
|
+
"growth_rate_pct": {
|
|
2585
|
+
"type": "number",
|
|
2586
|
+
"description": "Annual ARR growth rate percent."
|
|
2587
|
+
},
|
|
2588
|
+
"gross_margin_pct": {
|
|
2589
|
+
"type": "number",
|
|
2590
|
+
"description": "Gross margin percent."
|
|
2591
|
+
},
|
|
2592
|
+
"net_revenue_retention_pct": {
|
|
2593
|
+
"type": "number",
|
|
2594
|
+
"description": "Net revenue retention percent."
|
|
2595
|
+
},
|
|
2596
|
+
"burn_multiple": {
|
|
2597
|
+
"type": "number",
|
|
2598
|
+
"description": "Net burn divided by net new ARR. Optional."
|
|
2599
|
+
},
|
|
2600
|
+
"magic_number": {
|
|
2601
|
+
"type": "number",
|
|
2602
|
+
"description": "Sales efficiency magic number. Optional."
|
|
2603
|
+
},
|
|
2604
|
+
"ebitda_margin_pct": {
|
|
2605
|
+
"type": "number",
|
|
2606
|
+
"description": "EBITDA margin percent for rule-of-40. Defaults to 0 when omitted."
|
|
2607
|
+
},
|
|
2608
|
+
"logo_churn_pct": {
|
|
2609
|
+
"type": "number",
|
|
2610
|
+
"description": "Annual logo churn percent. Optional."
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
"required": [
|
|
2614
|
+
"arr",
|
|
2615
|
+
"growth_rate_pct",
|
|
2616
|
+
"gross_margin_pct",
|
|
2617
|
+
"net_revenue_retention_pct"
|
|
2618
|
+
]
|
|
2619
|
+
}
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"name": "saas-metrics-api",
|
|
2623
|
+
"http_name": "saas-metrics-api",
|
|
2624
|
+
"description": "(0.01 USDC/call) SaaS metrics API / rule-of-40 API / NRR, burn multiple, magic number, and logo churn score. Same operating-finance calculator as saas-metrics-score.",
|
|
2625
|
+
"method": "POST",
|
|
2626
|
+
"input_schema": {
|
|
2627
|
+
"type": "object",
|
|
2628
|
+
"properties": {
|
|
2629
|
+
"arr": {
|
|
2630
|
+
"type": "number",
|
|
2631
|
+
"description": "Annual recurring revenue."
|
|
2632
|
+
},
|
|
2633
|
+
"growth_rate_pct": {
|
|
2634
|
+
"type": "number",
|
|
2635
|
+
"description": "Annual ARR growth rate percent."
|
|
2636
|
+
},
|
|
2637
|
+
"gross_margin_pct": {
|
|
2638
|
+
"type": "number",
|
|
2639
|
+
"description": "Gross margin percent."
|
|
2640
|
+
},
|
|
2641
|
+
"net_revenue_retention_pct": {
|
|
2642
|
+
"type": "number",
|
|
2643
|
+
"description": "Net revenue retention percent."
|
|
2644
|
+
},
|
|
2645
|
+
"burn_multiple": {
|
|
2646
|
+
"type": "number",
|
|
2647
|
+
"description": "Net burn divided by net new ARR. Optional."
|
|
2648
|
+
},
|
|
2649
|
+
"magic_number": {
|
|
2650
|
+
"type": "number",
|
|
2651
|
+
"description": "Sales efficiency magic number. Optional."
|
|
2652
|
+
},
|
|
2653
|
+
"ebitda_margin_pct": {
|
|
2654
|
+
"type": "number",
|
|
2655
|
+
"description": "EBITDA margin percent for rule-of-40. Defaults to 0 when omitted."
|
|
2656
|
+
},
|
|
2657
|
+
"logo_churn_pct": {
|
|
2658
|
+
"type": "number",
|
|
2659
|
+
"description": "Annual logo churn percent. Optional."
|
|
2660
|
+
}
|
|
2661
|
+
},
|
|
2662
|
+
"required": [
|
|
2663
|
+
"arr",
|
|
2664
|
+
"growth_rate_pct",
|
|
2665
|
+
"gross_margin_pct",
|
|
2666
|
+
"net_revenue_retention_pct"
|
|
2667
|
+
]
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
{
|
|
2671
|
+
"name": "saas-metrics-score",
|
|
2672
|
+
"http_name": "saas-metrics-score",
|
|
2673
|
+
"description": "(0.01 USDC/call) SaaS metrics score API / rule of 40 calculator / net revenue retention score / burn multiple and magic number analysis / SaaS benchmark score. Computes rule-of-40, retention, gross margin, burn efficiency, sales efficiency, logo churn, weighted score, and driver notes.",
|
|
2674
|
+
"method": "POST",
|
|
2675
|
+
"input_schema": {
|
|
2676
|
+
"type": "object",
|
|
2677
|
+
"properties": {
|
|
2678
|
+
"arr": {
|
|
2679
|
+
"type": "number",
|
|
2680
|
+
"description": "Annual recurring revenue."
|
|
2681
|
+
},
|
|
2682
|
+
"growth_rate_pct": {
|
|
2683
|
+
"type": "number",
|
|
2684
|
+
"description": "Annual ARR growth rate percent."
|
|
2685
|
+
},
|
|
2686
|
+
"gross_margin_pct": {
|
|
2687
|
+
"type": "number",
|
|
2688
|
+
"description": "Gross margin percent."
|
|
2689
|
+
},
|
|
2690
|
+
"net_revenue_retention_pct": {
|
|
2691
|
+
"type": "number",
|
|
2692
|
+
"description": "Net revenue retention percent."
|
|
2693
|
+
},
|
|
2694
|
+
"burn_multiple": {
|
|
2695
|
+
"type": "number",
|
|
2696
|
+
"description": "Net burn divided by net new ARR. Optional."
|
|
2697
|
+
},
|
|
2698
|
+
"magic_number": {
|
|
2699
|
+
"type": "number",
|
|
2700
|
+
"description": "Sales efficiency magic number. Optional."
|
|
2701
|
+
},
|
|
2702
|
+
"ebitda_margin_pct": {
|
|
2703
|
+
"type": "number",
|
|
2704
|
+
"description": "EBITDA margin percent for rule-of-40. Defaults to 0 when omitted."
|
|
2705
|
+
},
|
|
2706
|
+
"logo_churn_pct": {
|
|
2707
|
+
"type": "number",
|
|
2708
|
+
"description": "Annual logo churn percent. Optional."
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2711
|
+
"required": [
|
|
2712
|
+
"arr",
|
|
2713
|
+
"growth_rate_pct",
|
|
2714
|
+
"gross_margin_pct",
|
|
2715
|
+
"net_revenue_retention_pct"
|
|
2716
|
+
]
|
|
2717
|
+
}
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
"name": "sec-13f-api",
|
|
2721
|
+
"http_name": "sec-13f-api",
|
|
2722
|
+
"description": "(0.05 USDC/call) SEC 13F API / institutional holdings changes / hedge fund position delta feed. Same 13f-deltas backend, indexed for agents tracking added, exited, increased, and reduced holdings from public 13F-HR filings.",
|
|
2723
|
+
"method": "POST",
|
|
2724
|
+
"input_schema": {
|
|
2725
|
+
"type": "object",
|
|
2726
|
+
"properties": {
|
|
2727
|
+
"cik": {
|
|
2728
|
+
"type": "string",
|
|
2729
|
+
"description": "Institutional manager's SEC CIK (e.g. '0001067983' for Berkshire Hathaway). Required — 13F filings are by CIK only, no ticker."
|
|
2730
|
+
},
|
|
2731
|
+
"limit_holdings": {
|
|
2732
|
+
"type": "number",
|
|
2733
|
+
"description": "Max positions to include in each bucket (added/exited/increased/reduced). 1-50. Default 20."
|
|
2734
|
+
},
|
|
2735
|
+
"min_change_usd": {
|
|
2736
|
+
"type": "number",
|
|
2737
|
+
"description": "Filter out moves smaller than this dollar magnitude. Default 0 (no filter)."
|
|
2738
|
+
}
|
|
2739
|
+
},
|
|
2740
|
+
"required": [
|
|
2741
|
+
"cik"
|
|
2742
|
+
]
|
|
2743
|
+
}
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"name": "sec-filing",
|
|
2747
|
+
"http_name": "sec-filing",
|
|
2748
|
+
"description": "(0.01 USDC/call) SEC EDGAR filing fetcher + parser + summarizer / 10-K + 10-Q + 8-K + S-1 + S-4 + DEF 14A + Form 4 + 13F-HR / annual report + quarterly report + proxy + insider trading + institutional holdings / SEC filing search by ticker or CIK / public-company filing pull. Resolves ticker to CIK against EDGAR, returns structured filing metadata (form, filed_date, accession_number, period_of_report, primary_document_url) for the most recent N filings of a chosen form type, optionally pulls the latest filing's full clean text, and optionally runs it through a Venice executive summary tuned to the form type. 100% public-domain SEC data, no auth.",
|
|
2749
|
+
"method": "POST",
|
|
2750
|
+
"input_schema": {
|
|
2751
|
+
"type": "object",
|
|
2752
|
+
"properties": {
|
|
2753
|
+
"ticker": {
|
|
2754
|
+
"type": "string",
|
|
2755
|
+
"description": "US-listed stock ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
|
|
2756
|
+
},
|
|
2757
|
+
"cik": {
|
|
2758
|
+
"type": "string",
|
|
2759
|
+
"description": "SEC Central Index Key (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
2760
|
+
},
|
|
2761
|
+
"form_type": {
|
|
2762
|
+
"type": "string",
|
|
2763
|
+
"description": "Filing type. Default '10-K'. Supports 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR."
|
|
2764
|
+
},
|
|
2765
|
+
"limit": {
|
|
2766
|
+
"type": "number",
|
|
2767
|
+
"description": "Max filings to return. 1-20. Default 5 (most-recent-first)."
|
|
2768
|
+
},
|
|
2769
|
+
"summarize": {
|
|
2770
|
+
"type": "boolean",
|
|
2771
|
+
"description": "If true, runs the latest filing through Venice for an executive-summary tailored to the form. Adds latency. Default false."
|
|
2772
|
+
},
|
|
2773
|
+
"include_text": {
|
|
2774
|
+
"type": "boolean",
|
|
2775
|
+
"description": "If true, includes the full clean-text body of the latest filing in the response. Large payload. Default false."
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"name": "sec-filings",
|
|
2782
|
+
"http_name": "sec-filings",
|
|
2783
|
+
"description": "(0.01 USDC/call) SEC filings API / EDGAR company filing search / 10-K, 10-Q, 8-K, S-1, DEF 14A, Form 4, and 13F-HR lookup by ticker or CIK. Same SEC EDGAR backend as sec-filing, with plural buyer wording for agents searching filing feeds.",
|
|
2784
|
+
"method": "POST",
|
|
2785
|
+
"input_schema": {
|
|
2786
|
+
"type": "object",
|
|
2787
|
+
"properties": {
|
|
2788
|
+
"ticker": {
|
|
2789
|
+
"type": "string",
|
|
2790
|
+
"description": "US-listed stock ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
|
|
2791
|
+
},
|
|
2792
|
+
"cik": {
|
|
2793
|
+
"type": "string",
|
|
2794
|
+
"description": "SEC Central Index Key (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
2795
|
+
},
|
|
2796
|
+
"form_type": {
|
|
2797
|
+
"type": "string",
|
|
2798
|
+
"description": "Filing type. Default '10-K'. Supports 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR."
|
|
2799
|
+
},
|
|
2800
|
+
"limit": {
|
|
2801
|
+
"type": "number",
|
|
2802
|
+
"description": "Max filings to return. 1-20. Default 5 (most-recent-first)."
|
|
2803
|
+
},
|
|
2804
|
+
"summarize": {
|
|
2805
|
+
"type": "boolean",
|
|
2806
|
+
"description": "If true, runs the latest filing through Venice for an executive-summary tailored to the form. Adds latency. Default false."
|
|
2807
|
+
},
|
|
2808
|
+
"include_text": {
|
|
2809
|
+
"type": "boolean",
|
|
2810
|
+
"description": "If true, includes the full clean-text body of the latest filing in the response. Large payload. Default false."
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
}
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"name": "sec-xbrl-api",
|
|
2817
|
+
"http_name": "sec-xbrl-api",
|
|
2818
|
+
"description": "(0.05 USDC/call) SEC XBRL API / EDGAR company facts / fundamentals time-series endpoint. Same xbrl-financials handler, discoverable for agents replacing paid fundamentals feeds with public SEC line-item data.",
|
|
2819
|
+
"method": "POST",
|
|
2820
|
+
"input_schema": {
|
|
2821
|
+
"type": "object",
|
|
2822
|
+
"properties": {
|
|
2823
|
+
"ticker": {
|
|
2824
|
+
"type": "string",
|
|
2825
|
+
"description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
|
|
2826
|
+
},
|
|
2827
|
+
"cik": {
|
|
2828
|
+
"type": "string",
|
|
2829
|
+
"description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
2830
|
+
},
|
|
2831
|
+
"metrics": {
|
|
2832
|
+
"type": "array",
|
|
2833
|
+
"items": {
|
|
2834
|
+
"type": "string"
|
|
2835
|
+
},
|
|
2836
|
+
"description": "Aliases of financial metrics to return, e.g. ['revenue', 'net_income', 'eps_diluted', 'total_assets', 'cash']. See available_metric_aliases in response. Default: a curated set."
|
|
2837
|
+
},
|
|
2838
|
+
"unit": {
|
|
2839
|
+
"type": "string",
|
|
2840
|
+
"enum": [
|
|
2841
|
+
"USD",
|
|
2842
|
+
"USD/shares",
|
|
2843
|
+
"shares",
|
|
2844
|
+
"any"
|
|
2845
|
+
],
|
|
2846
|
+
"description": "Filter values to one unit. Default 'any'."
|
|
2847
|
+
},
|
|
2848
|
+
"limit_per_metric": {
|
|
2849
|
+
"type": "number",
|
|
2850
|
+
"description": "Max datapoints returned per metric. 1-50. Default 10 (most-recent-first)."
|
|
2851
|
+
},
|
|
2852
|
+
"fy_only": {
|
|
2853
|
+
"type": "boolean",
|
|
2854
|
+
"description": "If true, only fiscal-year (10-K) values are returned, skipping quarterly 10-Q data. Default false."
|
|
2855
|
+
}
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"name": "startup-runway-calculator",
|
|
2861
|
+
"http_name": "startup-runway-calculator",
|
|
2862
|
+
"description": "(0.01 USDC/call) Startup runway calculator API / burn multiple / cash runway / founder finance planning. Computes net monthly burn, static runway, dynamic runway with revenue growth, burn reduction needed for target runway, score, drivers, and recommendation.",
|
|
2863
|
+
"method": "POST",
|
|
2864
|
+
"input_schema": {
|
|
2865
|
+
"type": "object",
|
|
2866
|
+
"properties": {
|
|
2867
|
+
"cash_balance": {
|
|
2868
|
+
"type": "number",
|
|
2869
|
+
"description": "Current cash balance."
|
|
2870
|
+
},
|
|
2871
|
+
"monthly_burn": {
|
|
2872
|
+
"type": "number",
|
|
2873
|
+
"description": "Monthly operating cash burn before revenue offset."
|
|
2874
|
+
},
|
|
2875
|
+
"monthly_revenue": {
|
|
2876
|
+
"type": "number",
|
|
2877
|
+
"description": "Current monthly revenue. Default 0."
|
|
2878
|
+
},
|
|
2879
|
+
"monthly_revenue_growth_pct": {
|
|
2880
|
+
"type": "number",
|
|
2881
|
+
"description": "Expected monthly revenue growth percent. Default 0."
|
|
2882
|
+
},
|
|
2883
|
+
"target_runway_months": {
|
|
2884
|
+
"type": "number",
|
|
2885
|
+
"description": "Target runway months. Default 18."
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
"required": [
|
|
2889
|
+
"cash_balance",
|
|
2890
|
+
"monthly_burn"
|
|
2891
|
+
]
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
{
|
|
2895
|
+
"name": "supply-chain-finance-score",
|
|
2896
|
+
"http_name": "supply-chain-finance-score",
|
|
2897
|
+
"description": "(0.01 USDC/call) Supply chain finance score API / SCF program design quality / early-pay discount score / reverse factoring calculator / supplier finance underwriting. Scores buyer credit, supplier risk, discount economics, days accelerated, automation maturity, and supplier concentration. Returns a 0-100 program score, grade, recommendation, metrics, and weighted driver breakdown.",
|
|
2898
|
+
"method": "POST",
|
|
2899
|
+
"input_schema": {
|
|
2900
|
+
"type": "object",
|
|
2901
|
+
"properties": {
|
|
2902
|
+
"supplier_risk_score": {
|
|
2903
|
+
"type": "number",
|
|
2904
|
+
"description": "0-100 supplier operational risk; higher means riskier."
|
|
2905
|
+
},
|
|
2906
|
+
"buyer_credit_score": {
|
|
2907
|
+
"type": "number",
|
|
2908
|
+
"description": "0-100 buyer payment strength; higher is better."
|
|
2909
|
+
},
|
|
2910
|
+
"discount_apr": {
|
|
2911
|
+
"type": "number",
|
|
2912
|
+
"description": "Annualized discount rate percent offered to suppliers."
|
|
2913
|
+
},
|
|
2914
|
+
"days_accelerated": {
|
|
2915
|
+
"type": "number",
|
|
2916
|
+
"description": "Number of days payment is accelerated."
|
|
2917
|
+
},
|
|
2918
|
+
"automation_score": {
|
|
2919
|
+
"type": "number",
|
|
2920
|
+
"description": "0-100 invoice approval and reconciliation maturity. Default 70."
|
|
2921
|
+
},
|
|
2922
|
+
"supplier_concentration_pct": {
|
|
2923
|
+
"type": "number",
|
|
2924
|
+
"description": "Percent exposure to largest supplier or supplier cohort. Default 20."
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
"required": [
|
|
2928
|
+
"supplier_risk_score",
|
|
2929
|
+
"buyer_credit_score",
|
|
2930
|
+
"discount_apr",
|
|
2931
|
+
"days_accelerated"
|
|
2932
|
+
]
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"name": "supply-chain-finance-score-api",
|
|
2937
|
+
"http_name": "supply-chain-finance-score-api",
|
|
2938
|
+
"description": "(0.01 USDC/call) Supply chain finance score API / supplier finance risk API / invoice acceleration scoring. Same finance model as supply-chain-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
2939
|
+
"method": "POST",
|
|
2940
|
+
"input_schema": {
|
|
2941
|
+
"type": "object",
|
|
2942
|
+
"properties": {
|
|
2943
|
+
"supplier_risk_score": {
|
|
2944
|
+
"type": "number",
|
|
2945
|
+
"description": "0-100 supplier operational risk; higher means riskier."
|
|
2946
|
+
},
|
|
2947
|
+
"buyer_credit_score": {
|
|
2948
|
+
"type": "number",
|
|
2949
|
+
"description": "0-100 buyer payment strength; higher is better."
|
|
2950
|
+
},
|
|
2951
|
+
"discount_apr": {
|
|
2952
|
+
"type": "number",
|
|
2953
|
+
"description": "Annualized discount rate percent offered to suppliers."
|
|
2954
|
+
},
|
|
2955
|
+
"days_accelerated": {
|
|
2956
|
+
"type": "number",
|
|
2957
|
+
"description": "Number of days payment is accelerated."
|
|
2958
|
+
},
|
|
2959
|
+
"automation_score": {
|
|
2960
|
+
"type": "number",
|
|
2961
|
+
"description": "0-100 invoice approval and reconciliation maturity. Default 70."
|
|
2962
|
+
},
|
|
2963
|
+
"supplier_concentration_pct": {
|
|
2964
|
+
"type": "number",
|
|
2965
|
+
"description": "Percent exposure to largest supplier or supplier cohort. Default 20."
|
|
2966
|
+
}
|
|
2967
|
+
},
|
|
2968
|
+
"required": [
|
|
2969
|
+
"supplier_risk_score",
|
|
2970
|
+
"buyer_credit_score",
|
|
2971
|
+
"discount_apr",
|
|
2972
|
+
"days_accelerated"
|
|
2973
|
+
]
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"name": "tariff-duty-scenario",
|
|
2978
|
+
"http_name": "tariff-duty-scenario",
|
|
2979
|
+
"description": "(0.02 USDC/call) Tariff duty scenario calculator / landed cost delta API / import duty what-if calculator / HTS cost scenario. Computes current vs proposed duty and landed-cost deltas from caller-supplied values, rates, freight, insurance, quantity, origin, destination, and optional HTS code. Scenario math only: does not choose final HTS classification, act as customs broker, or file customs documents.",
|
|
2980
|
+
"method": "POST",
|
|
2981
|
+
"input_schema": {
|
|
2982
|
+
"type": "object",
|
|
2983
|
+
"properties": {
|
|
2984
|
+
"product_value": {
|
|
2985
|
+
"type": "number",
|
|
2986
|
+
"description": "Commercial value of the goods before duty."
|
|
2987
|
+
},
|
|
2988
|
+
"freight": {
|
|
2989
|
+
"type": "number",
|
|
2990
|
+
"description": "Optional freight amount included in customs-value scenario."
|
|
2991
|
+
},
|
|
2992
|
+
"insurance": {
|
|
2993
|
+
"type": "number",
|
|
2994
|
+
"description": "Optional insurance amount included in customs-value scenario."
|
|
2995
|
+
},
|
|
2996
|
+
"current_duty_rate_pct": {
|
|
2997
|
+
"type": "number",
|
|
2998
|
+
"description": "Current duty rate percent, e.g. 7.5."
|
|
2999
|
+
},
|
|
3000
|
+
"proposed_duty_rate_pct": {
|
|
3001
|
+
"type": "number",
|
|
3002
|
+
"description": "Proposed or alternate duty rate percent."
|
|
3003
|
+
},
|
|
3004
|
+
"quantity": {
|
|
3005
|
+
"type": "number",
|
|
3006
|
+
"description": "Optional unit count for per-unit landed cost."
|
|
3007
|
+
},
|
|
3008
|
+
"currency": {
|
|
3009
|
+
"type": "string",
|
|
3010
|
+
"description": "Currency code. Default USD."
|
|
3011
|
+
},
|
|
3012
|
+
"hts_code": {
|
|
3013
|
+
"type": "string",
|
|
3014
|
+
"description": "Optional caller-supplied HTS code."
|
|
3015
|
+
},
|
|
3016
|
+
"country_of_origin": {
|
|
3017
|
+
"type": "string"
|
|
3018
|
+
},
|
|
3019
|
+
"destination_country": {
|
|
3020
|
+
"type": "string"
|
|
3021
|
+
},
|
|
3022
|
+
"product_description": {
|
|
3023
|
+
"type": "string"
|
|
3024
|
+
}
|
|
3025
|
+
},
|
|
3026
|
+
"required": [
|
|
3027
|
+
"product_value",
|
|
3028
|
+
"current_duty_rate_pct",
|
|
3029
|
+
"proposed_duty_rate_pct"
|
|
3030
|
+
]
|
|
3031
|
+
}
|
|
3032
|
+
},
|
|
3033
|
+
{
|
|
3034
|
+
"name": "trade-finance-risk-score",
|
|
3035
|
+
"http_name": "trade-finance-risk-score",
|
|
3036
|
+
"description": "(0.01 USDC/call) Trade finance risk score API / import-export finance underwriting / LC transaction risk calculator / country buyer collateral documentation score. Scores buyer credit, country and sanctions risk, tenor, collateral coverage, documentation quality, and FX risk. Returns 0-100 score, grade, recommendation, metrics, and weighted drivers.",
|
|
3037
|
+
"method": "POST",
|
|
3038
|
+
"input_schema": {
|
|
3039
|
+
"type": "object",
|
|
3040
|
+
"properties": {
|
|
3041
|
+
"buyer_credit_score": {
|
|
3042
|
+
"type": "number",
|
|
3043
|
+
"description": "0-100 buyer credit quality."
|
|
3044
|
+
},
|
|
3045
|
+
"country_risk_score": {
|
|
3046
|
+
"type": "number",
|
|
3047
|
+
"description": "0-100 country/sanctions risk; higher means riskier."
|
|
3048
|
+
},
|
|
3049
|
+
"tenor_days": {
|
|
3050
|
+
"type": "number",
|
|
3051
|
+
"description": "Transaction tenor in days."
|
|
3052
|
+
},
|
|
3053
|
+
"collateral_coverage_pct": {
|
|
3054
|
+
"type": "number",
|
|
3055
|
+
"description": "Collateral as percent of exposure. Default 0."
|
|
3056
|
+
},
|
|
3057
|
+
"documentation_quality": {
|
|
3058
|
+
"type": "number",
|
|
3059
|
+
"description": "0-100 LC/invoice/bill-of-lading quality. Default 70."
|
|
3060
|
+
},
|
|
3061
|
+
"fx_risk_score": {
|
|
3062
|
+
"type": "number",
|
|
3063
|
+
"description": "0-100 FX risk; higher means riskier. Default 35."
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
3066
|
+
"required": [
|
|
3067
|
+
"buyer_credit_score",
|
|
3068
|
+
"country_risk_score",
|
|
3069
|
+
"tenor_days"
|
|
3070
|
+
]
|
|
3071
|
+
}
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"name": "trade-finance-risk-score-api",
|
|
3075
|
+
"http_name": "trade-finance-risk-score-api",
|
|
3076
|
+
"description": "(0.01 USDC/call) Trade finance risk score API / export finance risk API / tenor and collateral scoring. Same calculator as trade-finance-risk-score, exposed under the buyer keyword used in demand searches.",
|
|
3077
|
+
"method": "POST",
|
|
3078
|
+
"input_schema": {
|
|
3079
|
+
"type": "object",
|
|
3080
|
+
"properties": {
|
|
3081
|
+
"buyer_credit_score": {
|
|
3082
|
+
"type": "number",
|
|
3083
|
+
"description": "0-100 buyer credit quality."
|
|
3084
|
+
},
|
|
3085
|
+
"country_risk_score": {
|
|
3086
|
+
"type": "number",
|
|
3087
|
+
"description": "0-100 country/sanctions risk; higher means riskier."
|
|
3088
|
+
},
|
|
3089
|
+
"tenor_days": {
|
|
3090
|
+
"type": "number",
|
|
3091
|
+
"description": "Transaction tenor in days."
|
|
3092
|
+
},
|
|
3093
|
+
"collateral_coverage_pct": {
|
|
3094
|
+
"type": "number",
|
|
3095
|
+
"description": "Collateral as percent of exposure. Default 0."
|
|
3096
|
+
},
|
|
3097
|
+
"documentation_quality": {
|
|
3098
|
+
"type": "number",
|
|
3099
|
+
"description": "0-100 LC/invoice/bill-of-lading quality. Default 70."
|
|
3100
|
+
},
|
|
3101
|
+
"fx_risk_score": {
|
|
3102
|
+
"type": "number",
|
|
3103
|
+
"description": "0-100 FX risk; higher means riskier. Default 35."
|
|
3104
|
+
}
|
|
3105
|
+
},
|
|
3106
|
+
"required": [
|
|
3107
|
+
"buyer_credit_score",
|
|
3108
|
+
"country_risk_score",
|
|
3109
|
+
"tenor_days"
|
|
3110
|
+
]
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3113
|
+
{
|
|
3114
|
+
"name": "trademark-search",
|
|
3115
|
+
"http_name": "trademark-search",
|
|
3116
|
+
"description": "(0.03 USDC/call) Trademark search / USPTO trademark lookup / TSDR / federal trademark database. Look up any US trademark by serial number or registration number. Returns mark text, owner, status, filing date, classes, goods/services. Federal public TSDR API.",
|
|
3117
|
+
"method": "POST",
|
|
3118
|
+
"input_schema": {
|
|
3119
|
+
"type": "object",
|
|
3120
|
+
"properties": {
|
|
3121
|
+
"serial_number": {
|
|
3122
|
+
"type": "string",
|
|
3123
|
+
"description": "8-digit USPTO serial number (e.g. '78787878')."
|
|
3124
|
+
},
|
|
3125
|
+
"registration_number": {
|
|
3126
|
+
"type": "string",
|
|
3127
|
+
"description": "7-digit USPTO registration number (e.g. '3000000')."
|
|
3128
|
+
}
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
},
|
|
3132
|
+
{
|
|
3133
|
+
"name": "transition-finance-score",
|
|
3134
|
+
"http_name": "transition-finance-score",
|
|
3135
|
+
"description": "(0.01 USDC/call) Transition finance score API / climate transition plan credibility / emissions reduction finance calculator / transition-aligned capital scoring. Scores baseline emissions, target reduction, years to target, verification quality, and capex intensity. Returns annual abatement, 0-100 credibility score, grade, recommendation, and weighted drivers.",
|
|
3136
|
+
"method": "POST",
|
|
3137
|
+
"input_schema": {
|
|
3138
|
+
"type": "object",
|
|
3139
|
+
"properties": {
|
|
3140
|
+
"baseline_emissions_tco2e": {
|
|
3141
|
+
"type": "number",
|
|
3142
|
+
"description": "Current baseline emissions in metric tons CO2e."
|
|
3143
|
+
},
|
|
3144
|
+
"target_reduction_pct": {
|
|
3145
|
+
"type": "number",
|
|
3146
|
+
"description": "Target percent reduction by target year."
|
|
3147
|
+
},
|
|
3148
|
+
"target_years": {
|
|
3149
|
+
"type": "number",
|
|
3150
|
+
"description": "Years until target date."
|
|
3151
|
+
},
|
|
3152
|
+
"verification_score": {
|
|
3153
|
+
"type": "number",
|
|
3154
|
+
"description": "0-100 measurement, reporting, and third-party assurance quality. Default 65."
|
|
3155
|
+
},
|
|
3156
|
+
"capex_to_revenue_pct": {
|
|
3157
|
+
"type": "number",
|
|
3158
|
+
"description": "Transition capex as percent of revenue. Default 20."
|
|
3159
|
+
}
|
|
3160
|
+
},
|
|
3161
|
+
"required": [
|
|
3162
|
+
"baseline_emissions_tco2e",
|
|
3163
|
+
"target_reduction_pct",
|
|
3164
|
+
"target_years"
|
|
3165
|
+
]
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
"name": "transition-finance-score-api",
|
|
3170
|
+
"http_name": "transition-finance-score-api",
|
|
3171
|
+
"description": "(0.01 USDC/call) Transition finance score API / climate transition finance scoring / emissions-reduction finance score. Same model as transition-finance-score, exposed under the buyer keyword used in demand searches.",
|
|
3172
|
+
"method": "POST",
|
|
3173
|
+
"input_schema": {
|
|
3174
|
+
"type": "object",
|
|
3175
|
+
"properties": {
|
|
3176
|
+
"baseline_emissions_tco2e": {
|
|
3177
|
+
"type": "number",
|
|
3178
|
+
"description": "Current baseline emissions in metric tons CO2e."
|
|
3179
|
+
},
|
|
3180
|
+
"target_reduction_pct": {
|
|
3181
|
+
"type": "number",
|
|
3182
|
+
"description": "Target percent reduction by target year."
|
|
3183
|
+
},
|
|
3184
|
+
"target_years": {
|
|
3185
|
+
"type": "number",
|
|
3186
|
+
"description": "Years until target date."
|
|
3187
|
+
},
|
|
3188
|
+
"verification_score": {
|
|
3189
|
+
"type": "number",
|
|
3190
|
+
"description": "0-100 measurement, reporting, and third-party assurance quality. Default 65."
|
|
3191
|
+
},
|
|
3192
|
+
"capex_to_revenue_pct": {
|
|
3193
|
+
"type": "number",
|
|
3194
|
+
"description": "Transition capex as percent of revenue. Default 20."
|
|
3195
|
+
}
|
|
3196
|
+
},
|
|
3197
|
+
"required": [
|
|
3198
|
+
"baseline_emissions_tco2e",
|
|
3199
|
+
"target_reduction_pct",
|
|
3200
|
+
"target_years"
|
|
3201
|
+
]
|
|
3202
|
+
}
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
"name": "unit-economics-calculator",
|
|
3206
|
+
"http_name": "unit-economics-calculator",
|
|
3207
|
+
"description": "(0.01 USDC/call) Unit economics calculator API / SaaS LTV CAC / payback period / ARPU gross margin churn calculator. Computes monthly gross profit, estimated customer lifetime, LTV, LTV/CAC, CAC payback months, score, drivers, and recommendation.",
|
|
3208
|
+
"method": "POST",
|
|
3209
|
+
"input_schema": {
|
|
3210
|
+
"type": "object",
|
|
3211
|
+
"properties": {
|
|
3212
|
+
"arpu": {
|
|
3213
|
+
"type": "number",
|
|
3214
|
+
"description": "Average monthly revenue per user/account."
|
|
3215
|
+
},
|
|
3216
|
+
"gross_margin_pct": {
|
|
3217
|
+
"type": "number",
|
|
3218
|
+
"description": "Gross margin percent."
|
|
3219
|
+
},
|
|
3220
|
+
"monthly_churn_pct": {
|
|
3221
|
+
"type": "number",
|
|
3222
|
+
"description": "Monthly customer churn percent."
|
|
3223
|
+
},
|
|
3224
|
+
"cac": {
|
|
3225
|
+
"type": "number",
|
|
3226
|
+
"description": "Customer acquisition cost."
|
|
3227
|
+
},
|
|
3228
|
+
"payback_target_months": {
|
|
3229
|
+
"type": "number",
|
|
3230
|
+
"description": "Target CAC payback months. Default 12."
|
|
3231
|
+
}
|
|
3232
|
+
},
|
|
3233
|
+
"required": [
|
|
3234
|
+
"arpu",
|
|
3235
|
+
"gross_margin_pct",
|
|
3236
|
+
"monthly_churn_pct",
|
|
3237
|
+
"cac"
|
|
3238
|
+
]
|
|
3239
|
+
}
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"name": "uspto-trademark-search",
|
|
3243
|
+
"http_name": "uspto-trademark-search",
|
|
3244
|
+
"description": "(0.03 USDC/call) USPTO trademark status / TSDR lookup. Look up a US trademark by serial number or registration number. Returns mark text, owner, status, filing date, classes, goods/services. Federal public TSDR API.",
|
|
3245
|
+
"method": "POST",
|
|
3246
|
+
"input_schema": {
|
|
3247
|
+
"type": "object",
|
|
3248
|
+
"properties": {
|
|
3249
|
+
"serial_number": {
|
|
3250
|
+
"type": "string",
|
|
3251
|
+
"description": "8-digit USPTO serial number (e.g. '78787878')."
|
|
3252
|
+
},
|
|
3253
|
+
"registration_number": {
|
|
3254
|
+
"type": "string",
|
|
3255
|
+
"description": "7-digit USPTO registration number (e.g. '3000000')."
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"name": "working-capital-cycle",
|
|
3262
|
+
"http_name": "working-capital-cycle",
|
|
3263
|
+
"description": "(0.01 USDC/call) Working capital cycle API / cash conversion cycle calculator / DSO DIO DPO analysis / cash release opportunity score. Computes days sales outstanding, days inventory outstanding, days payables outstanding, cash conversion cycle, working capital tied up, and cash release opportunity versus target.",
|
|
3264
|
+
"method": "POST",
|
|
3265
|
+
"input_schema": {
|
|
3266
|
+
"type": "object",
|
|
3267
|
+
"properties": {
|
|
3268
|
+
"annual_revenue": {
|
|
3269
|
+
"type": "number",
|
|
3270
|
+
"description": "Annual revenue in dollars."
|
|
3271
|
+
},
|
|
3272
|
+
"annual_cogs": {
|
|
3273
|
+
"type": "number",
|
|
3274
|
+
"description": "Annual cost of goods sold. Defaults to 65% of annual_revenue when omitted."
|
|
3275
|
+
},
|
|
3276
|
+
"accounts_receivable": {
|
|
3277
|
+
"type": "number",
|
|
3278
|
+
"description": "Current accounts receivable balance."
|
|
3279
|
+
},
|
|
3280
|
+
"inventory": {
|
|
3281
|
+
"type": "number",
|
|
3282
|
+
"description": "Current inventory balance."
|
|
3283
|
+
},
|
|
3284
|
+
"accounts_payable": {
|
|
3285
|
+
"type": "number",
|
|
3286
|
+
"description": "Current accounts payable balance."
|
|
3287
|
+
},
|
|
3288
|
+
"target_cash_conversion_days": {
|
|
3289
|
+
"type": "number",
|
|
3290
|
+
"description": "Target cash conversion cycle days. Default 45."
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
"required": [
|
|
3294
|
+
"annual_revenue",
|
|
3295
|
+
"accounts_receivable",
|
|
3296
|
+
"inventory",
|
|
3297
|
+
"accounts_payable"
|
|
3298
|
+
]
|
|
3299
|
+
}
|
|
3300
|
+
},
|
|
3301
|
+
{
|
|
3302
|
+
"name": "working-capital-cycle-api",
|
|
3303
|
+
"http_name": "working-capital-cycle-api",
|
|
3304
|
+
"description": "(0.01 USDC/call) Working capital cycle API / cash conversion cycle API / DSO DIO DPO calculator. Same business finance calculator as working-capital-cycle, exposed under the buyer keyword used in demand searches.",
|
|
3305
|
+
"method": "POST",
|
|
3306
|
+
"input_schema": {
|
|
3307
|
+
"type": "object",
|
|
3308
|
+
"properties": {
|
|
3309
|
+
"annual_revenue": {
|
|
3310
|
+
"type": "number",
|
|
3311
|
+
"description": "Annual revenue in dollars."
|
|
3312
|
+
},
|
|
3313
|
+
"annual_cogs": {
|
|
3314
|
+
"type": "number",
|
|
3315
|
+
"description": "Annual cost of goods sold. Defaults to 65% of annual_revenue when omitted."
|
|
3316
|
+
},
|
|
3317
|
+
"accounts_receivable": {
|
|
3318
|
+
"type": "number",
|
|
3319
|
+
"description": "Current accounts receivable balance."
|
|
3320
|
+
},
|
|
3321
|
+
"inventory": {
|
|
3322
|
+
"type": "number",
|
|
3323
|
+
"description": "Current inventory balance."
|
|
3324
|
+
},
|
|
3325
|
+
"accounts_payable": {
|
|
3326
|
+
"type": "number",
|
|
3327
|
+
"description": "Current accounts payable balance."
|
|
3328
|
+
},
|
|
3329
|
+
"target_cash_conversion_days": {
|
|
3330
|
+
"type": "number",
|
|
3331
|
+
"description": "Target cash conversion cycle days. Default 45."
|
|
3332
|
+
}
|
|
3333
|
+
},
|
|
3334
|
+
"required": [
|
|
3335
|
+
"annual_revenue",
|
|
3336
|
+
"accounts_receivable",
|
|
3337
|
+
"inventory",
|
|
3338
|
+
"accounts_payable"
|
|
3339
|
+
]
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"name": "xbrl-api",
|
|
3344
|
+
"http_name": "xbrl-api",
|
|
3345
|
+
"description": "(0.05 USDC/call) XBRL API / SEC company facts API / public financial statement data. Same SEC Company Facts backend as xbrl-financials, indexed for agents pulling revenue, net income, EPS, assets, cash, operating cash flow, units, form type, and fiscal period metadata.",
|
|
3346
|
+
"method": "POST",
|
|
3347
|
+
"input_schema": {
|
|
3348
|
+
"type": "object",
|
|
3349
|
+
"properties": {
|
|
3350
|
+
"ticker": {
|
|
3351
|
+
"type": "string",
|
|
3352
|
+
"description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
|
|
3353
|
+
},
|
|
3354
|
+
"cik": {
|
|
3355
|
+
"type": "string",
|
|
3356
|
+
"description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
|
|
3357
|
+
},
|
|
3358
|
+
"metrics": {
|
|
3359
|
+
"type": "array",
|
|
3360
|
+
"items": {
|
|
3361
|
+
"type": "string"
|
|
3362
|
+
},
|
|
3363
|
+
"description": "Aliases of financial metrics to return, e.g. ['revenue', 'net_income', 'eps_diluted', 'total_assets', 'cash']. See available_metric_aliases in response. Default: a curated set."
|
|
3364
|
+
},
|
|
3365
|
+
"unit": {
|
|
3366
|
+
"type": "string",
|
|
3367
|
+
"enum": [
|
|
3368
|
+
"USD",
|
|
3369
|
+
"USD/shares",
|
|
3370
|
+
"shares",
|
|
3371
|
+
"any"
|
|
3372
|
+
],
|
|
3373
|
+
"description": "Filter values to one unit. Default 'any'."
|
|
3374
|
+
},
|
|
3375
|
+
"limit_per_metric": {
|
|
3376
|
+
"type": "number",
|
|
3377
|
+
"description": "Max datapoints returned per metric. 1-50. Default 10 (most-recent-first)."
|
|
3378
|
+
},
|
|
3379
|
+
"fy_only": {
|
|
3380
|
+
"type": "boolean",
|
|
3381
|
+
"description": "If true, only fiscal-year (10-K) values are returned, skipping quarterly 10-Q data. Default false."
|
|
647
3382
|
}
|
|
648
3383
|
}
|
|
649
3384
|
}
|
|
@@ -651,7 +3386,7 @@ export const TOOLS = [
|
|
|
651
3386
|
{
|
|
652
3387
|
"name": "xbrl-financials",
|
|
653
3388
|
"http_name": "xbrl-financials",
|
|
654
|
-
"description": "(0.05 USDC/call) SEC XBRL financials.
|
|
3389
|
+
"description": "(0.05 USDC/call) SEC XBRL financials / company fundamentals / income-statement + balance-sheet feed / revenue + net-income + EPS history / 10-K + 10-Q line-item extractor / EDGAR Company Facts wrapper. For a US-listed ticker (or CIK), returns time-series of structured financial line items — revenue, net_income, EPS (basic/diluted), total_assets, cash, operating_cash_flow, and dozens more — sourced directly from SEC XBRL filings. Each datapoint has the value, unit (USD, USD/shares, shares), period start/end, fiscal year/quarter, form (10-K / 10-Q), and underlying XBRL concept. Public-domain SEC data — Bloomberg/CapIQ-substitute for fundamentals.",
|
|
655
3390
|
"method": "POST",
|
|
656
3391
|
"input_schema": {
|
|
657
3392
|
"type": "object",
|