@apteva/integrations 0.15.9 → 0.15.11
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/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/apify.json +168 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/bookvault.json +309 -0
- package/src/apps/braintree.json +53 -0
- package/src/apps/brightdata.json +22 -1
- package/src/apps/browse-ai.json +243 -5
- package/src/apps/browserbase.json +41 -11
- package/src/apps/browserless.json +101 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/digitalocean.json +53 -0
- package/src/apps/elevenlabs.json +292 -0
- package/src/apps/firecrawl.json +111 -0
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/ingram-coresource.json +119 -0
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/lulu-print.json +266 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/publishdrive.json +132 -0
- package/src/apps/razorpay.json +207 -0
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/streetlib.json +60 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "soniox",
|
|
3
|
+
"name": "Soniox",
|
|
4
|
+
"description": "Soniox speech AI API for async transcription, file upload, transcript retrieval, model discovery, usage logs, concurrency limits, temporary API keys, and text-to-speech.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=soniox.com&sz=128",
|
|
6
|
+
"categories": ["ai", "speech", "speech-to-text", "transcription", "text-to-speech"],
|
|
7
|
+
"base_url": "https://api.soniox.com",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{api_key}}",
|
|
12
|
+
"Content-Type": "application/json"
|
|
13
|
+
},
|
|
14
|
+
"credential_fields": [
|
|
15
|
+
{
|
|
16
|
+
"name": "api_key",
|
|
17
|
+
"label": "API Key",
|
|
18
|
+
"description": "Soniox API key from console.soniox.com."
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"tools": [
|
|
23
|
+
{
|
|
24
|
+
"name": "upload_file",
|
|
25
|
+
"description": "Upload an audio/video file to Soniox. Use the returned file id with create_transcription.",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"path": "/v1/files",
|
|
28
|
+
"timeout_ms": 600000,
|
|
29
|
+
"multipart_form": {
|
|
30
|
+
"field_names": ["client_reference_id"],
|
|
31
|
+
"file_fields": { "file": "file" }
|
|
32
|
+
},
|
|
33
|
+
"input_schema": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"properties": {
|
|
36
|
+
"file": { "type": "string", "description": "Audio/video file content as blobref://, base64, data URL, or raw string." },
|
|
37
|
+
"file_filename": { "type": "string", "description": "Optional upload filename." },
|
|
38
|
+
"client_reference_id": { "type": "string" }
|
|
39
|
+
},
|
|
40
|
+
"required": ["file"]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "list_files",
|
|
45
|
+
"description": "List Soniox uploaded files.",
|
|
46
|
+
"method": "GET",
|
|
47
|
+
"path": "/v1/files",
|
|
48
|
+
"input_schema": { "type": "object", "properties": { "limit": { "type": "integer" }, "cursor": { "type": "string" } } }
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "get_file",
|
|
52
|
+
"description": "Get Soniox file metadata.",
|
|
53
|
+
"method": "GET",
|
|
54
|
+
"path": "/v1/files/{file_id}",
|
|
55
|
+
"input_schema": { "type": "object", "properties": { "file_id": { "type": "string" } }, "required": ["file_id"] }
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "delete_file",
|
|
59
|
+
"description": "Delete a Soniox uploaded file.",
|
|
60
|
+
"method": "DELETE",
|
|
61
|
+
"path": "/v1/files/{file_id}",
|
|
62
|
+
"input_schema": { "type": "object", "properties": { "file_id": { "type": "string" } }, "required": ["file_id"] }
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "create_transcription",
|
|
66
|
+
"description": "Create an async Soniox transcription. Provide exactly one audio source: audio_url or file_id. Supports language_hints, context, translation config, webhook config, and client_reference_id.",
|
|
67
|
+
"method": "POST",
|
|
68
|
+
"path": "/v1/transcriptions",
|
|
69
|
+
"timeout_ms": 600000,
|
|
70
|
+
"input_schema": {
|
|
71
|
+
"type": "object",
|
|
72
|
+
"properties": {
|
|
73
|
+
"model": { "type": "string", "default": "stt-async-preview" },
|
|
74
|
+
"audio_url": { "type": "string" },
|
|
75
|
+
"file_id": { "type": "string" },
|
|
76
|
+
"language_hints": { "type": "array", "items": { "type": "string" } },
|
|
77
|
+
"context": { "type": "string" },
|
|
78
|
+
"translation_config": { "type": "object" },
|
|
79
|
+
"webhook_url": { "type": "string" },
|
|
80
|
+
"webhook_auth_header_name": { "type": "string" },
|
|
81
|
+
"webhook_auth_header_value": { "type": "string" },
|
|
82
|
+
"client_reference_id": { "type": "string" }
|
|
83
|
+
},
|
|
84
|
+
"required": ["model"]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "list_transcriptions",
|
|
89
|
+
"description": "List Soniox async transcriptions.",
|
|
90
|
+
"method": "GET",
|
|
91
|
+
"path": "/v1/transcriptions",
|
|
92
|
+
"input_schema": { "type": "object", "properties": { "limit": { "type": "integer" }, "cursor": { "type": "string" } } }
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "get_transcription",
|
|
96
|
+
"description": "Get Soniox transcription status and metadata. Poll until status is completed, then call get_transcription_transcript.",
|
|
97
|
+
"method": "GET",
|
|
98
|
+
"path": "/v1/transcriptions/{transcription_id}",
|
|
99
|
+
"input_schema": { "type": "object", "properties": { "transcription_id": { "type": "string" } }, "required": ["transcription_id"] }
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "get_transcription_transcript",
|
|
103
|
+
"description": "Get full Soniox transcript text and token details for a completed transcription.",
|
|
104
|
+
"method": "GET",
|
|
105
|
+
"path": "/v1/transcriptions/{transcription_id}/transcript",
|
|
106
|
+
"timeout_ms": 300000,
|
|
107
|
+
"input_schema": { "type": "object", "properties": { "transcription_id": { "type": "string" } }, "required": ["transcription_id"] }
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "get_transcription_text",
|
|
111
|
+
"description": "Get only the plain transcript text for a completed Soniox transcription. Use this when token-level timestamps are not needed.",
|
|
112
|
+
"method": "GET",
|
|
113
|
+
"path": "/v1/transcriptions/{transcription_id}/transcript",
|
|
114
|
+
"response_path": "text",
|
|
115
|
+
"timeout_ms": 300000,
|
|
116
|
+
"input_schema": { "type": "object", "properties": { "transcription_id": { "type": "string" } }, "required": ["transcription_id"] }
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "delete_transcription",
|
|
120
|
+
"description": "Delete a completed or failed Soniox transcription and associated files. Processing transcriptions cannot be deleted.",
|
|
121
|
+
"method": "DELETE",
|
|
122
|
+
"path": "/v1/transcriptions/{transcription_id}",
|
|
123
|
+
"input_schema": { "type": "object", "properties": { "transcription_id": { "type": "string" } }, "required": ["transcription_id"] }
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "list_models",
|
|
127
|
+
"description": "List Soniox speech-to-text models available to the API key.",
|
|
128
|
+
"method": "GET",
|
|
129
|
+
"path": "/v1/models",
|
|
130
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "list_tts_models",
|
|
134
|
+
"description": "List Soniox text-to-speech models and voices available to the API key.",
|
|
135
|
+
"method": "GET",
|
|
136
|
+
"path": "/v1/tts-models",
|
|
137
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "generate_speech",
|
|
141
|
+
"description": "Generate speech audio with Soniox TTS. Returns binary audio. Common required fields: model, language, voice, audio_format, text.",
|
|
142
|
+
"method": "POST",
|
|
143
|
+
"base_url": "https://tts-rt.soniox.com",
|
|
144
|
+
"path": "/tts",
|
|
145
|
+
"timeout_ms": 300000,
|
|
146
|
+
"input_schema": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"model": { "type": "string", "default": "tts-rt-v1" },
|
|
150
|
+
"language": { "type": "string", "default": "en" },
|
|
151
|
+
"voice": { "type": "string" },
|
|
152
|
+
"audio_format": { "type": "string", "description": "wav, mp3, opus, flac, or pcm depending on model support." },
|
|
153
|
+
"text": { "type": "string" },
|
|
154
|
+
"sample_rate": { "type": "integer" },
|
|
155
|
+
"bitrate": { "type": "integer" },
|
|
156
|
+
"client_reference_id": { "type": "string" }
|
|
157
|
+
},
|
|
158
|
+
"required": ["model", "language", "voice", "audio_format", "text"]
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "create_temporary_api_key",
|
|
163
|
+
"description": "Create a temporary Soniox API key for scoped client-side sessions.",
|
|
164
|
+
"method": "POST",
|
|
165
|
+
"path": "/v1/auth/temporary-api-key",
|
|
166
|
+
"input_schema": { "type": "object", "properties": { "usage_type": { "type": "string" }, "expires_in_seconds": { "type": "integer" }, "max_session_duration_seconds": { "type": "integer" } } }
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "get_usage_logs",
|
|
170
|
+
"description": "Get Soniox per-request usage logs for a UTC time window up to 31 days, no older than 91 days.",
|
|
171
|
+
"method": "GET",
|
|
172
|
+
"path": "/v1/usage-logs",
|
|
173
|
+
"input_schema": {
|
|
174
|
+
"type": "object",
|
|
175
|
+
"properties": {
|
|
176
|
+
"start_time": { "type": "string" },
|
|
177
|
+
"end_time": { "type": "string" },
|
|
178
|
+
"limit": { "type": "integer" },
|
|
179
|
+
"sort": { "type": "string" },
|
|
180
|
+
"cursor": { "type": "string" }
|
|
181
|
+
},
|
|
182
|
+
"required": ["start_time", "end_time"]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "get_concurrency_limits",
|
|
187
|
+
"description": "Get Soniox current concurrent request counts and configured limits for transcription and TTS.",
|
|
188
|
+
"method": "GET",
|
|
189
|
+
"path": "/v1/concurrency-limits",
|
|
190
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"health_check": { "tool": "list_models" }
|
|
194
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "speechmatics",
|
|
3
|
+
"name": "Speechmatics",
|
|
4
|
+
"description": "Speechmatics speech-to-text Batch API for submitting transcription jobs, polling status, retrieving transcripts, deleting jobs, reading logs, and checking usage.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=speechmatics.com&sz=128",
|
|
6
|
+
"categories": ["ai", "speech", "speech-to-text", "transcription", "audio"],
|
|
7
|
+
"base_url": "https://{{credential.region}}.asr.api.speechmatics.com/v2",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{api_key}}",
|
|
12
|
+
"Accept": "application/json"
|
|
13
|
+
},
|
|
14
|
+
"credential_fields": [
|
|
15
|
+
{
|
|
16
|
+
"name": "api_key",
|
|
17
|
+
"label": "API Key",
|
|
18
|
+
"description": "Speechmatics API key from the portal."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "region",
|
|
22
|
+
"label": "Batch Region",
|
|
23
|
+
"description": "Speechmatics Batch region prefix: eu1, us1, au1, or enterprise regions eu2/us2.",
|
|
24
|
+
"type": "text"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"tools": [
|
|
29
|
+
{
|
|
30
|
+
"name": "create_job",
|
|
31
|
+
"description": "Create a Speechmatics Batch transcription job. Provide `config` as the raw Speechmatics job config object. For URL-based transcription, include fetch_data.url inside config. For direct upload, also pass `data_file` as base64, data URL, or blob-rehydrated file.",
|
|
32
|
+
"method": "POST",
|
|
33
|
+
"path": "/jobs",
|
|
34
|
+
"timeout_ms": 600000,
|
|
35
|
+
"multipart_form": {
|
|
36
|
+
"field_names": ["config"],
|
|
37
|
+
"file_fields": { "data_file": "data_file" }
|
|
38
|
+
},
|
|
39
|
+
"input_schema": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {
|
|
42
|
+
"config": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"description": "Raw Speechmatics config JSON, for example {\"type\":\"transcription\",\"transcription_config\":{\"language\":\"en\",\"operating_point\":\"enhanced\",\"diarization\":\"speaker\"},\"fetch_data\":{\"url\":\"https://.../audio.mp3\"}}."
|
|
45
|
+
},
|
|
46
|
+
"data_file": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "Optional audio/video file content for direct upload. Use a blobref:// handle from a file tool when available, or base64/data URL."
|
|
49
|
+
},
|
|
50
|
+
"data_file_filename": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Optional filename used for the multipart upload."
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"required": ["config"]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "create_transcription_from_url",
|
|
60
|
+
"description": "Create a Speechmatics transcription job from a publicly reachable audio/video URL using a simple agent-friendly schema.",
|
|
61
|
+
"method": "POST",
|
|
62
|
+
"path": "/jobs",
|
|
63
|
+
"timeout_ms": 600000,
|
|
64
|
+
"multipart_form": {
|
|
65
|
+
"field_names": ["config"]
|
|
66
|
+
},
|
|
67
|
+
"input_schema": {
|
|
68
|
+
"type": "object",
|
|
69
|
+
"properties": {
|
|
70
|
+
"config": {
|
|
71
|
+
"type": "object",
|
|
72
|
+
"description": "Speechmatics config object. Must include fetch_data.url and transcription_config. Example: {\"type\":\"transcription\",\"transcription_config\":{\"language\":\"en\",\"operating_point\":\"enhanced\"},\"fetch_data\":{\"url\":\"https://example.com/audio.mp3\"}}."
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"required": ["config"]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "list_jobs",
|
|
80
|
+
"description": "List Speechmatics Batch jobs in the configured region.",
|
|
81
|
+
"method": "GET",
|
|
82
|
+
"path": "/jobs",
|
|
83
|
+
"input_schema": {
|
|
84
|
+
"type": "object",
|
|
85
|
+
"properties": {
|
|
86
|
+
"limit": { "type": "integer" },
|
|
87
|
+
"created_before": { "type": "string" },
|
|
88
|
+
"created_after": { "type": "string" }
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "get_job",
|
|
94
|
+
"description": "Get Speechmatics job details, including status, progress, and errors.",
|
|
95
|
+
"method": "GET",
|
|
96
|
+
"path": "/jobs/{jobid}",
|
|
97
|
+
"input_schema": { "type": "object", "properties": { "jobid": { "type": "string" } }, "required": ["jobid"] }
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "get_transcript",
|
|
101
|
+
"description": "Get the transcript for a completed Speechmatics transcription job. Use format=json-v2 for structured output, txt for plain text, or srt/vtt for subtitles when enabled.",
|
|
102
|
+
"method": "GET",
|
|
103
|
+
"path": "/jobs/{jobid}/transcript",
|
|
104
|
+
"input_schema": {
|
|
105
|
+
"type": "object",
|
|
106
|
+
"properties": {
|
|
107
|
+
"jobid": { "type": "string" },
|
|
108
|
+
"format": { "type": "string", "description": "Transcript format such as json-v2, txt, srt, or vtt." }
|
|
109
|
+
},
|
|
110
|
+
"required": ["jobid"]
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "get_transcript_text",
|
|
115
|
+
"description": "Get a plain-text transcript for a completed Speechmatics job.",
|
|
116
|
+
"method": "GET",
|
|
117
|
+
"path": "/jobs/{jobid}/transcript?format=txt",
|
|
118
|
+
"input_schema": { "type": "object", "properties": { "jobid": { "type": "string" } }, "required": ["jobid"] }
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "get_job_log",
|
|
122
|
+
"description": "Get the Speechmatics log file for a job.",
|
|
123
|
+
"method": "GET",
|
|
124
|
+
"path": "/jobs/{jobid}/log",
|
|
125
|
+
"input_schema": { "type": "object", "properties": { "jobid": { "type": "string" } }, "required": ["jobid"] }
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "delete_job",
|
|
129
|
+
"description": "Delete a Speechmatics job and remove associated resources.",
|
|
130
|
+
"method": "DELETE",
|
|
131
|
+
"path": "/jobs/{jobid}",
|
|
132
|
+
"input_schema": { "type": "object", "properties": { "jobid": { "type": "string" } }, "required": ["jobid"] }
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "get_usage",
|
|
136
|
+
"description": "Get Speechmatics Batch usage statistics for the configured region.",
|
|
137
|
+
"method": "GET",
|
|
138
|
+
"path": "/usage",
|
|
139
|
+
"input_schema": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"properties": {
|
|
142
|
+
"since": { "type": "string" },
|
|
143
|
+
"until": { "type": "string" }
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "create_temporary_key",
|
|
149
|
+
"description": "Create a temporary Speechmatics key for client-side Batch or Realtime use. For Batch, include client_ref when exposing the key to end users.",
|
|
150
|
+
"method": "POST",
|
|
151
|
+
"base_url": "https://mp.speechmatics.com/v1",
|
|
152
|
+
"path": "/api_keys",
|
|
153
|
+
"query_params": ["type"],
|
|
154
|
+
"input_schema": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"properties": {
|
|
157
|
+
"type": { "type": "string", "description": "Temporary key type: batch or rt.", "default": "batch" },
|
|
158
|
+
"ttl": { "type": "integer", "description": "Time to live in seconds, 60-86400." },
|
|
159
|
+
"client_ref": { "type": "string", "description": "Optional client reference. Recommended for browser-exposed Batch keys." },
|
|
160
|
+
"region": { "type": "string", "description": "Optional Batch region: eu, usa, or au." }
|
|
161
|
+
},
|
|
162
|
+
"required": ["ttl"]
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"health_check": { "tool": "list_jobs" }
|
|
167
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "streetlib",
|
|
3
|
+
"name": "StreetLib",
|
|
4
|
+
"description": "StreetLib partner API for book-publishing partner workflows. Public partner docs expose account onboarding and reference data; distribution/book-submission endpoints may require StreetLib partner enablement.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=streetlib.com&sz=128",
|
|
6
|
+
"categories": ["books", "publishing", "distribution", "ebooks", "audiobooks"],
|
|
7
|
+
"base_url": "https://api.streetlib.com/partners",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["api_key"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"x-api-key": "{{api_key}}"
|
|
12
|
+
},
|
|
13
|
+
"credential_fields": [
|
|
14
|
+
{
|
|
15
|
+
"name": "api_key",
|
|
16
|
+
"label": "Partner API key",
|
|
17
|
+
"description": "StreetLib partner API key. Partner/distribution access may need to be enabled by StreetLib."
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"tools": [
|
|
22
|
+
{
|
|
23
|
+
"name": "list_countries",
|
|
24
|
+
"description": "Get StreetLib country IDs for partner user signup.",
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"path": "/countries",
|
|
27
|
+
"input_schema": {
|
|
28
|
+
"type": "object",
|
|
29
|
+
"properties": {}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "list_timezones",
|
|
34
|
+
"description": "Get StreetLib timezone values for partner user signup.",
|
|
35
|
+
"method": "GET",
|
|
36
|
+
"path": "/timezones",
|
|
37
|
+
"input_schema": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"properties": {}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "affiliate_signup",
|
|
44
|
+
"description": "Create a new StreetLib user under a partner account.",
|
|
45
|
+
"method": "POST",
|
|
46
|
+
"path": "/affiliate/signup",
|
|
47
|
+
"body_root_param": "body",
|
|
48
|
+
"input_schema": {
|
|
49
|
+
"type": "object",
|
|
50
|
+
"properties": {
|
|
51
|
+
"body": {
|
|
52
|
+
"type": "object",
|
|
53
|
+
"description": "StreetLib UserRequest payload from the partner API documentation."
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"required": ["body"]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|