@apteva/integrations 0.3.23 → 0.3.25

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.
@@ -0,0 +1,88 @@
1
+ {
2
+ "slug": "paraswap",
3
+ "name": "ParaSwap",
4
+ "description": "Multi-chain DEX aggregator with MEV protection — swap quotes and token data across Ethereum, Polygon, BSC, Arbitrum, Avalanche. Free, no API key.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=paraswap.io&sz=128",
6
+ "categories": [
7
+ "dex",
8
+ "aggregator",
9
+ "swap",
10
+ "mev-protection",
11
+ "defi"
12
+ ],
13
+ "base_url": "",
14
+ "auth": {
15
+ "types": [
16
+ "bearer"
17
+ ],
18
+ "headers": {
19
+ "Authorization": "Bearer {{token}}"
20
+ },
21
+ "credential_fields": [
22
+ {
23
+ "name": "token",
24
+ "label": "Token"
25
+ }
26
+ ]
27
+ },
28
+ "tools": [
29
+ {
30
+ "name": "get_price",
31
+ "description": "Get the best swap price across DEXs. Network: 1=ETH, 56=BSC, 137=Polygon, 42161=Arbitrum, 43114=Avalanche.",
32
+ "method": "GET",
33
+ "path": "/get-price",
34
+ "input_schema": {
35
+ "type": "object",
36
+ "properties": {
37
+ "srcToken": {
38
+ "type": "string",
39
+ "description": "Source token address (ETH native: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)"
40
+ },
41
+ "destToken": {
42
+ "type": "string",
43
+ "description": "Destination token address"
44
+ },
45
+ "amount": {
46
+ "type": "string",
47
+ "description": "Amount in smallest unit"
48
+ },
49
+ "srcDecimals": {
50
+ "type": "integer",
51
+ "description": "Source token decimals",
52
+ "default": 18
53
+ },
54
+ "destDecimals": {
55
+ "type": "integer",
56
+ "description": "Destination token decimals",
57
+ "default": 18
58
+ },
59
+ "network": {
60
+ "type": "integer",
61
+ "description": "Chain ID",
62
+ "default": 1
63
+ }
64
+ },
65
+ "required": [
66
+ "srcToken",
67
+ "destToken",
68
+ "amount"
69
+ ]
70
+ }
71
+ },
72
+ {
73
+ "name": "get_tokens",
74
+ "description": "Get all supported tokens on a network.",
75
+ "method": "GET",
76
+ "path": "/get-tokens",
77
+ "input_schema": {
78
+ "type": "object",
79
+ "properties": {
80
+ "network": {
81
+ "type": "integer",
82
+ "default": 1
83
+ }
84
+ }
85
+ }
86
+ }
87
+ ]
88
+ }
@@ -0,0 +1,195 @@
1
+ {
2
+ "slug": "playht",
3
+ "name": "Play.ht",
4
+ "description": "AI voice generator with ultra-realistic text-to-speech, voice cloning, and multi-engine support",
5
+ "logo": "https://www.google.com/s2/favicons?domain=play.ht&sz=128",
6
+ "categories": [
7
+ "ai",
8
+ "voice",
9
+ "text-to-speech",
10
+ "tts",
11
+ "audio",
12
+ "voice-cloning"
13
+ ],
14
+ "base_url": "https://play.ht/api/v1",
15
+ "auth": {
16
+ "types": [
17
+ "bearer"
18
+ ],
19
+ "headers": {
20
+ "Authorization": "Bearer {{token}}"
21
+ },
22
+ "credential_fields": [
23
+ {
24
+ "name": "token",
25
+ "label": "API Key"
26
+ }
27
+ ]
28
+ },
29
+ "tools": [
30
+ {
31
+ "name": "generate_speech",
32
+ "description": "Convert text to ultra-realistic speech with AI voices, multiple quality presets, and customizable speed",
33
+ "method": "POST",
34
+ "path": "/convert",
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "apiKey": {
39
+ "type": "string",
40
+ "description": "Play.ht API secret key (required)"
41
+ },
42
+ "userId": {
43
+ "type": "string",
44
+ "description": "Play.ht User ID (required)"
45
+ },
46
+ "voice": {
47
+ "type": "string",
48
+ "description": "Voice ID for synthesis (required). Use list-voices to find available voices."
49
+ },
50
+ "content": {
51
+ "type": "array",
52
+ "items": {
53
+ "type": "string"
54
+ },
55
+ "description": "Array of text paragraphs to convert (required unless using ssml)"
56
+ },
57
+ "ssml": {
58
+ "type": "array",
59
+ "items": {
60
+ "type": "string"
61
+ },
62
+ "description": "Array of SSML-formatted paragraphs (alternative to content)"
63
+ },
64
+ "title": {
65
+ "type": "string",
66
+ "description": "Name for the file in your dashboard"
67
+ },
68
+ "speed": {
69
+ "type": "string",
70
+ "default": "1.0",
71
+ "description": "Speaking rate from 0.5 to 1.5"
72
+ },
73
+ "preset": {
74
+ "type": "string",
75
+ "enum": [
76
+ "real-time",
77
+ "balanced",
78
+ "low-latency",
79
+ "high-quality"
80
+ ],
81
+ "description": "Quality preset for audio generation"
82
+ },
83
+ "narrationStyle": {
84
+ "type": "string",
85
+ "description": "Tone/accent style supported by the selected voice"
86
+ },
87
+ "globalSpeed": {
88
+ "type": "string",
89
+ "description": "Speed percentage 20-200% (for Standard/Premium voices)"
90
+ },
91
+ "pronunciations": {
92
+ "type": "array",
93
+ "items": {
94
+ "type": "object",
95
+ "properties": {
96
+ "key": {
97
+ "type": "string",
98
+ "description": "Word to replace"
99
+ },
100
+ "value": {
101
+ "type": "string",
102
+ "description": "Phonetic replacement"
103
+ }
104
+ }
105
+ },
106
+ "description": "Custom pronunciation overrides"
107
+ },
108
+ "trimSilence": {
109
+ "type": "boolean",
110
+ "description": "Remove silence from end of audio"
111
+ }
112
+ },
113
+ "required": [
114
+ "apiKey",
115
+ "userId",
116
+ "voice"
117
+ ]
118
+ }
119
+ },
120
+ {
121
+ "name": "get_status",
122
+ "description": "Check the status and get download URL for a text-to-speech conversion job",
123
+ "method": "GET",
124
+ "path": "/articleStatus",
125
+ "input_schema": {
126
+ "type": "object",
127
+ "properties": {
128
+ "apiKey": {
129
+ "type": "string",
130
+ "description": "Play.ht API secret key (required)"
131
+ },
132
+ "userId": {
133
+ "type": "string",
134
+ "description": "Play.ht User ID (required)"
135
+ },
136
+ "transcriptionId": {
137
+ "type": "string",
138
+ "description": "Transcription ID returned from generate-speech (required)"
139
+ }
140
+ },
141
+ "required": [
142
+ "apiKey",
143
+ "userId",
144
+ "transcriptionId"
145
+ ]
146
+ }
147
+ },
148
+ {
149
+ "name": "list_voices",
150
+ "description": "Get available ultra-realistic AI voices with gender, accent, and language info",
151
+ "method": "GET",
152
+ "path": "/getVoices",
153
+ "input_schema": {
154
+ "type": "object",
155
+ "properties": {
156
+ "apiKey": {
157
+ "type": "string",
158
+ "description": "Play.ht API secret key (required)"
159
+ },
160
+ "userId": {
161
+ "type": "string",
162
+ "description": "Play.ht User ID (required)"
163
+ }
164
+ },
165
+ "required": [
166
+ "apiKey",
167
+ "userId"
168
+ ]
169
+ }
170
+ },
171
+ {
172
+ "name": "list_cloned_voices",
173
+ "description": "Get your custom cloned voices",
174
+ "method": "GET",
175
+ "path": "/getClonedVoices",
176
+ "input_schema": {
177
+ "type": "object",
178
+ "properties": {
179
+ "apiKey": {
180
+ "type": "string",
181
+ "description": "Play.ht API secret key (required)"
182
+ },
183
+ "userId": {
184
+ "type": "string",
185
+ "description": "Play.ht User ID (required)"
186
+ }
187
+ },
188
+ "required": [
189
+ "apiKey",
190
+ "userId"
191
+ ]
192
+ }
193
+ }
194
+ ]
195
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "slug": "santiment",
3
+ "name": "Santiment",
4
+ "description": "Crypto analytics — on-chain metrics, social sentiment, developer activity, whale tracking, and network stats via GraphQL API.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=santiment.net&sz=128",
6
+ "categories": [
7
+ "analytics",
8
+ "sentiment",
9
+ "on-chain",
10
+ "social",
11
+ "whales"
12
+ ],
13
+ "base_url": "https://api.santiment.net",
14
+ "auth": {
15
+ "types": [
16
+ "bearer"
17
+ ],
18
+ "headers": {
19
+ "Authorization": "{{token}}"
20
+ },
21
+ "credential_fields": [
22
+ {
23
+ "name": "api_key",
24
+ "label": "Api_key",
25
+ "description": "Santiment API key (from https://app.santiment.net/account#api-keys)"
26
+ }
27
+ ]
28
+ },
29
+ "tools": [
30
+ {
31
+ "name": "query",
32
+ "description": "Execute a GraphQL query against Santiment API. Supports metrics like: social_volume, dev_activity, daily_active_addresses, exchange_balance, whale_transaction_count, sentiment_positive, mvrv_ratio, and more.",
33
+ "method": "POST",
34
+ "path": "/graphql",
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "query": {
39
+ "type": "string",
40
+ "description": "GraphQL query. Example: { getMetric(metric: \"social_volume\") { timeseriesData(slug: \"bitcoin\" from: \"2024-01-01\" to: \"2024-01-31\" interval: \"1d\") { datetime value } } }"
41
+ }
42
+ },
43
+ "required": [
44
+ "query"
45
+ ]
46
+ }
47
+ }
48
+ ]
49
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "slug": "thegraph",
3
+ "name": "The Graph",
4
+ "description": "Indexed blockchain data via GraphQL — query Uniswap pools, Aave markets, Compound positions, and any indexed subgraph.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=thegraph.com&sz=128",
6
+ "categories": [
7
+ "blockchain",
8
+ "graphql",
9
+ "indexer",
10
+ "defi",
11
+ "uniswap",
12
+ "aave"
13
+ ],
14
+ "base_url": "",
15
+ "auth": {
16
+ "types": [
17
+ "bearer"
18
+ ],
19
+ "headers": {
20
+ "Authorization": "{{token}}"
21
+ },
22
+ "credential_fields": [
23
+ {
24
+ "name": "api_key",
25
+ "label": "Api_key",
26
+ "description": "The Graph API key (from https://thegraph.com/studio/apikeys/)"
27
+ }
28
+ ]
29
+ },
30
+ "tools": [
31
+ {
32
+ "name": "query_subgraph",
33
+ "description": "Execute a GraphQL query against any subgraph. Common subgraph IDs: Uniswap V3 (5zvR82QoaXYFyDEKLZ9t6v9adgnptxYpKpSbxtgVENFV), Aave V3 (Cd2gEDVeqnjBn1hSeqFMitw8Q1iiyV9FYUZkLNRcL87g).",
34
+ "method": "POST",
35
+ "path": "/query-subgraph",
36
+ "input_schema": {
37
+ "type": "object",
38
+ "properties": {
39
+ "subgraphId": {
40
+ "type": "string",
41
+ "description": "Subgraph deployment ID"
42
+ },
43
+ "query": {
44
+ "type": "string",
45
+ "description": "GraphQL query string"
46
+ },
47
+ "variables": {
48
+ "type": "object",
49
+ "description": "GraphQL variables"
50
+ }
51
+ },
52
+ "required": [
53
+ "subgraphId",
54
+ "query"
55
+ ]
56
+ }
57
+ }
58
+ ]
59
+ }
@@ -0,0 +1,227 @@
1
+ {
2
+ "slug": "wellsaid",
3
+ "name": "WellSaid Labs",
4
+ "description": "Enterprise AI voice platform with high-quality text-to-speech, clip management, and pronunciation libraries",
5
+ "logo": "https://www.google.com/s2/favicons?domain=wellsaid.io&sz=128",
6
+ "categories": [
7
+ "ai",
8
+ "voice",
9
+ "text-to-speech",
10
+ "tts",
11
+ "audio",
12
+ "enterprise"
13
+ ],
14
+ "base_url": "https://api.wellsaidlabs.com/v1",
15
+ "auth": {
16
+ "types": [
17
+ "bearer"
18
+ ],
19
+ "headers": {
20
+ "Authorization": "Bearer {{token}}"
21
+ },
22
+ "credential_fields": [
23
+ {
24
+ "name": "token",
25
+ "label": "API Key"
26
+ }
27
+ ]
28
+ },
29
+ "tools": [
30
+ {
31
+ "name": "generate_speech",
32
+ "description": "Convert text to speech with high-quality AI voices via streaming TTS",
33
+ "method": "POST",
34
+ "path": "/tts/stream",
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "apiKey": {
39
+ "type": "string",
40
+ "description": "WellSaid Labs API key (required)"
41
+ },
42
+ "text": {
43
+ "type": "string",
44
+ "description": "Text to convert to speech (required)"
45
+ },
46
+ "speaker_id": {
47
+ "type": "string",
48
+ "description": "Voice/speaker avatar ID (required). Use list-avatars to find available speakers."
49
+ }
50
+ },
51
+ "required": [
52
+ "apiKey",
53
+ "text",
54
+ "speaker_id"
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "name": "create_clip",
60
+ "description": "Create an audio clip asynchronously for longer text content",
61
+ "method": "POST",
62
+ "path": "/clips",
63
+ "input_schema": {
64
+ "type": "object",
65
+ "properties": {
66
+ "apiKey": {
67
+ "type": "string",
68
+ "description": "WellSaid Labs API key (required)"
69
+ },
70
+ "text": {
71
+ "type": "string",
72
+ "description": "Text to convert to speech (required)"
73
+ },
74
+ "speaker_id": {
75
+ "type": "string",
76
+ "description": "Voice/speaker avatar ID (required)"
77
+ }
78
+ },
79
+ "required": [
80
+ "apiKey",
81
+ "text",
82
+ "speaker_id"
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "name": "list_avatars",
88
+ "description": "Get available voice avatars and their metadata",
89
+ "method": "GET",
90
+ "path": "/avatars",
91
+ "input_schema": {
92
+ "type": "object",
93
+ "properties": {
94
+ "apiKey": {
95
+ "type": "string",
96
+ "description": "WellSaid Labs API key (required)"
97
+ }
98
+ },
99
+ "required": [
100
+ "apiKey"
101
+ ]
102
+ }
103
+ },
104
+ {
105
+ "name": "list_clips",
106
+ "description": "List recent audio clips with their status and metadata",
107
+ "method": "GET",
108
+ "path": "/clips",
109
+ "input_schema": {
110
+ "type": "object",
111
+ "properties": {
112
+ "apiKey": {
113
+ "type": "string",
114
+ "description": "WellSaid Labs API key (required)"
115
+ }
116
+ },
117
+ "required": [
118
+ "apiKey"
119
+ ]
120
+ }
121
+ },
122
+ {
123
+ "name": "get_clip",
124
+ "description": "Get details and download URL for a specific audio clip",
125
+ "method": "GET",
126
+ "path": "/clips/{clip_id}",
127
+ "input_schema": {
128
+ "type": "object",
129
+ "properties": {
130
+ "apiKey": {
131
+ "type": "string",
132
+ "description": "WellSaid Labs API key (required)"
133
+ },
134
+ "clip_id": {
135
+ "type": "string",
136
+ "description": "Clip ID to retrieve (required)"
137
+ }
138
+ },
139
+ "required": [
140
+ "apiKey",
141
+ "clip_id"
142
+ ]
143
+ }
144
+ },
145
+ {
146
+ "name": "combine_clips",
147
+ "description": "Merge multiple audio clips into a single audio file with optional pauses between them",
148
+ "method": "POST",
149
+ "path": "/clips/combine",
150
+ "input_schema": {
151
+ "type": "object",
152
+ "properties": {
153
+ "apiKey": {
154
+ "type": "string",
155
+ "description": "WellSaid Labs API key (required)"
156
+ },
157
+ "clip_ids": {
158
+ "type": "array",
159
+ "items": {
160
+ "type": "string"
161
+ },
162
+ "description": "Array of clip IDs to combine in order (required)"
163
+ },
164
+ "pause_ms": {
165
+ "type": "integer",
166
+ "description": "Pause duration in milliseconds between clips"
167
+ }
168
+ },
169
+ "required": [
170
+ "apiKey",
171
+ "clip_ids"
172
+ ]
173
+ }
174
+ },
175
+ {
176
+ "name": "word_timing",
177
+ "description": "Generate speech with word-level timing data for subtitles and synchronization",
178
+ "method": "POST",
179
+ "path": "/tts/word-timing",
180
+ "input_schema": {
181
+ "type": "object",
182
+ "properties": {
183
+ "apiKey": {
184
+ "type": "string",
185
+ "description": "WellSaid Labs API key (required)"
186
+ },
187
+ "text": {
188
+ "type": "string",
189
+ "description": "Text to convert to speech (required)"
190
+ },
191
+ "speaker_id": {
192
+ "type": "string",
193
+ "description": "Voice/speaker avatar ID (required)"
194
+ }
195
+ },
196
+ "required": [
197
+ "apiKey",
198
+ "text",
199
+ "speaker_id"
200
+ ]
201
+ }
202
+ },
203
+ {
204
+ "name": "create_replacement_library",
205
+ "description": "Create a pronunciation replacement library for custom word pronunciations",
206
+ "method": "POST",
207
+ "path": "/replacement-libraries",
208
+ "input_schema": {
209
+ "type": "object",
210
+ "properties": {
211
+ "apiKey": {
212
+ "type": "string",
213
+ "description": "WellSaid Labs API key (required)"
214
+ },
215
+ "name": {
216
+ "type": "string",
217
+ "description": "Name for the replacement library (required)"
218
+ }
219
+ },
220
+ "required": [
221
+ "apiKey",
222
+ "name"
223
+ ]
224
+ }
225
+ }
226
+ ]
227
+ }
@@ -0,0 +1,82 @@
1
+ {
2
+ "slug": "zapper",
3
+ "name": "Zapper",
4
+ "description": "Multi-chain DeFi portfolio — wallet balances, protocol positions, NFTs, and app data across all EVM chains.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=zapper.xyz&sz=128",
6
+ "categories": [
7
+ "defi",
8
+ "portfolio",
9
+ "wallet",
10
+ "nft",
11
+ "multi-chain"
12
+ ],
13
+ "base_url": "https://api.zapper.xyz/v2",
14
+ "auth": {
15
+ "types": [
16
+ "bearer"
17
+ ],
18
+ "headers": {
19
+ "Authorization": "{{token}}"
20
+ },
21
+ "credential_fields": [
22
+ {
23
+ "name": "api_key",
24
+ "label": "Api_key",
25
+ "description": "Zapper API key (base64 encoded, from https://studio.zapper.xyz/)"
26
+ }
27
+ ]
28
+ },
29
+ "tools": [
30
+ {
31
+ "name": "get_balances",
32
+ "description": "Get token balances and DeFi positions for a wallet across all supported chains.",
33
+ "method": "GET",
34
+ "path": "/balances",
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "address": {
39
+ "type": "string",
40
+ "description": "Wallet address (0x...)"
41
+ }
42
+ },
43
+ "required": [
44
+ "address"
45
+ ]
46
+ }
47
+ },
48
+ {
49
+ "name": "get_apps",
50
+ "description": "Get list of all supported DeFi apps/protocols on Zapper.",
51
+ "method": "GET",
52
+ "path": "/apps",
53
+ "input_schema": {
54
+ "type": "object",
55
+ "properties": {}
56
+ }
57
+ },
58
+ {
59
+ "name": "get_app_balances",
60
+ "description": "Get positions in a specific DeFi app for a wallet.",
61
+ "method": "GET",
62
+ "path": "/apps/{appId}/balances",
63
+ "input_schema": {
64
+ "type": "object",
65
+ "properties": {
66
+ "appId": {
67
+ "type": "string",
68
+ "description": "App/protocol ID (e.g., uniswap-v3, aave-v3, lido)"
69
+ },
70
+ "address": {
71
+ "type": "string",
72
+ "description": "Wallet address"
73
+ }
74
+ },
75
+ "required": [
76
+ "appId",
77
+ "address"
78
+ ]
79
+ }
80
+ }
81
+ ]
82
+ }