-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelsa.postman_collection.json
More file actions
156 lines (156 loc) · 4.71 KB
/
Copy pathelsa.postman_collection.json
File metadata and controls
156 lines (156 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"item": [
{
"id": "a1b2c3d4-0001-4001-8001-000000000001",
"name": "Scripted",
"description": {
"content": "Scripted speech scoring (v2): audio plus an expected script.",
"type": "text/plain"
},
"item": [
{
"id": "a1b2c3d4-0001-4001-8001-000000000002",
"name": "Score a recorded audio file against an expected script (batch).",
"request": {
"name": "Score a recorded audio file against an expected script (batch).",
"description": {
"content": "Single-file (batch) scripted scoring. Multipart form with api_plan, audio_file, and the expected script. Returns sentence, word, and phoneme-level pronunciation scores with fluency and intonation. Request/response schemas are partner-gated.",
"type": "text/plain"
},
"url": {
"raw": "{{baseUrl}}/api/v2/score_audio",
"path": [
"api",
"v2",
"score_audio"
],
"host": [
"{{baseUrl}}"
],
"query": [],
"variable": []
},
"header": [
{
"key": "Authorization",
"value": "ELSA {{apiToken}}"
}
],
"method": "POST",
"auth": null,
"body": {
"mode": "formdata",
"formdata": [
{
"key": "api_plan",
"value": "",
"type": "text"
},
{
"key": "audio_file",
"type": "file",
"src": []
}
]
}
},
"response": []
}
],
"event": []
},
{
"id": "a1b2c3d4-0001-4001-8001-000000000003",
"name": "Unscripted",
"description": {
"content": "Unscripted speech scoring (v1): open-ended audio, no reference script.",
"type": "text/plain"
},
"item": [
{
"id": "a1b2c3d4-0001-4001-8001-000000000004",
"name": "Score a recorded audio file with no reference script (batch).",
"request": {
"name": "Score a recorded audio file with no reference script (batch).",
"description": {
"content": "Single-file (batch) unscripted scoring. Multipart form with api_plan and audio_file. Returns a transcript plus pronunciation, prosody, fluency, grammar, and vocabulary analysis. Request/response schemas are partner-gated.",
"type": "text/plain"
},
"url": {
"raw": "{{baseUrl}}/api/v1/score_audio_plus",
"path": [
"api",
"v1",
"score_audio_plus"
],
"host": [
"{{baseUrl}}"
],
"query": [],
"variable": []
},
"header": [
{
"key": "Authorization",
"value": "ELSA {{apiToken}}"
}
],
"method": "POST",
"auth": null,
"body": {
"mode": "formdata",
"formdata": [
{
"key": "api_plan",
"value": "",
"type": "text"
},
{
"key": "audio_file",
"type": "file",
"src": []
}
]
}
},
"response": []
}
],
"event": []
}
],
"event": [],
"variable": [
{
"type": "string",
"value": "https://api.elsanow.io",
"key": "baseUrl"
}
],
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "Authorization"
},
{
"key": "value",
"value": "ELSA {{apiToken}}"
},
{
"key": "in",
"value": "header"
}
]
},
"info": {
"_postman_id": "a1b2c3d4-0001-4001-8001-000000000000",
"name": "ELSA Speech Assessment API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"description": {
"content": "Partner/B2B speech-assessment API. Scripted (v2) and unscripted (v1) batch HTTP scoring endpoints; realtime scoring is delivered over WebSocket (wss://api.elsanow.io). Auth uses 'Authorization: ELSA <API_token>'. Disambiguation: ELSA Speak / ELSA Corp (elsaspeak.com, elsanow.io), not the Elsa .NET workflows library.\n\nDocumentation: https://api-external-doc.elsanow.co/",
"type": "text/plain"
}
}
}