curl --request GET \
--url https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"group_id": "grp_9k2fA7bQ3xzM1LpN",
"status": "complete",
"quote_id": "qte_9k2fA7bQ3xzM1LpN",
"member_count": 3,
"members": [
{
"kind": "cached_read",
"read_id": "job_2c1d4e9fA7bQ3xzM",
"episode_id": "ep_rwg4do2imnjyhaj7",
"credits_charged": 1,
"created_at": "2026-09-08T09:01:00Z"
},
{
"kind": "job",
"job_id": "job_4e9f2c1dB8cR4yaN",
"episode_id": "ep_3iicyxg6ymbv75gy",
"status": "completed",
"estimated_credits": 60,
"reserved_credits": 75,
"settled_credits": 59,
"released_credits": 16,
"created_at": "2026-09-08T09:01:00Z"
},
{
"kind": "job",
"job_id": "job_9f2c1d4eC9dS5zbP",
"episode_id": "ep_uy4pqvjsmeyrhavz",
"status": "transcribing",
"estimated_credits": 45,
"reserved_credits": 57,
"created_at": "2026-09-08T09:01:00Z"
}
],
"member_counts": {
"validating": 0,
"queued": 0,
"downloading": 0,
"transcribing": 1,
"merging": 0,
"completed": 1,
"failed": 0,
"cancelled": 0,
"cached_read": 1
},
"credits_reserved": 57,
"credits_settled": 60,
"credits_released": 16,
"created_at": "2026-09-08T09:01:00Z",
"completion_deadline": "2026-09-08T09:06:00Z",
"completed_at": "2026-09-08T09:01:00Z",
"abandoned_at": null
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}Read one job group's rollup
One request for the whole group: member counts by state, the credits it holds reserved and has settled and released, and every member — each job with its id and state, each cached read with the id it was charged under. Only for a group the caller’s own account owns: another account’s group id answers 404 group_not_found, and discloses no member identifier (the account is the partition the group and its members are keyed under, not a filter).
A pending group is a confirm still fanning out, or one that died; its members are the ones reserved so far. Past completion_deadline it is swept to abandoned with its reservations returned.
curl --request GET \
--url https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://k8mfogcvz4.execute-api.us-east-1.amazonaws.com/prod/v1/groups/{group_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"group_id": "grp_9k2fA7bQ3xzM1LpN",
"status": "complete",
"quote_id": "qte_9k2fA7bQ3xzM1LpN",
"member_count": 3,
"members": [
{
"kind": "cached_read",
"read_id": "job_2c1d4e9fA7bQ3xzM",
"episode_id": "ep_rwg4do2imnjyhaj7",
"credits_charged": 1,
"created_at": "2026-09-08T09:01:00Z"
},
{
"kind": "job",
"job_id": "job_4e9f2c1dB8cR4yaN",
"episode_id": "ep_3iicyxg6ymbv75gy",
"status": "completed",
"estimated_credits": 60,
"reserved_credits": 75,
"settled_credits": 59,
"released_credits": 16,
"created_at": "2026-09-08T09:01:00Z"
},
{
"kind": "job",
"job_id": "job_9f2c1d4eC9dS5zbP",
"episode_id": "ep_uy4pqvjsmeyrhavz",
"status": "transcribing",
"estimated_credits": 45,
"reserved_credits": 57,
"created_at": "2026-09-08T09:01:00Z"
}
],
"member_counts": {
"validating": 0,
"queued": 0,
"downloading": 0,
"transcribing": 1,
"merging": 0,
"completed": 1,
"failed": 0,
"cancelled": 0,
"cached_read": 1
},
"credits_reserved": 57,
"credits_settled": 60,
"credits_released": 16,
"created_at": "2026-09-08T09:01:00Z",
"completion_deadline": "2026-09-08T09:06:00Z",
"completed_at": "2026-09-08T09:01:00Z",
"abandoned_at": null
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}{
"error": {
"code": "invalid_request",
"type": "invalid_request",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"retryable": true
}
}Authorizations
Authorization: Bearer hk_live_... for live keys or Authorization: Bearer hk_test_... for test-mode keys. hk_test_ keys resolve real public catalog metadata but return deterministic committed fixtures, never call inference, and never mutate live credits. This is the only transport for the credential: the x-api-key alias once documented was removed in 0.2.0, because the edge authorizer reads Authorization as its single identity source and a request on any other header is refused before it is authenticated.
Never accepted on a dashboardJwt operation, and there are no exceptions. GET /v1/usage and GET /v1/limits briefly declared both schemes (0.8.0); that was withdrawn in 0.8.1 because no deployed route could honor it — both operations are served by the control-plane API, whose authorizer verifies a Cognito token and refuses an hk_live_ credential on shape, and the customer API does not route either path. An API-key holder reads its balance and reservation from QuoteResponse, which carries balance_credits and reserved_credits on every quote. Every operation in this document takes one scheme or the other and refuses the wrong one as unauthenticated.
Path Parameters
Opaque, server-generated job group identifier.
40^grp_[A-Za-z0-9]{16,32}$Response
The group and its members.
One group's rollup. member_count is how many members the confirm set out to create; members is how many exist, which is fewer only while the group is pending (or after it was abandoned part way). credits_reserved is what the group still holds against the balance — the reservations of members not yet terminal; credits_settled is what it has been charged, job members and cache reads together; credits_released is what came back from members that failed, were cancelled, or settled below their ceiling. None of the three is a bill: each job member carries its own figures, and the ledger is the record.
Opaque, server-generated job group identifier.
40^grp_[A-Za-z0-9]{16,32}$pending while a confirm is still fanning out (or died doing so); complete once every member landed; abandoned once the sweeper returned a pending group's reservations past its deadline. A cancelled group is complete with cancelled members.
pending, complete, abandoned The quote this group confirmed, or null for a single-episode submission.
40^qte_[A-Za-z0-9]{16,32}$x >= 1100One member of a group — a job, or a settled cache read. kind discriminates.
- Option 1
- Option 2
Show child attributes
Show child attributes
How many members are in each job state, plus how many were settled cache reads (which have no state — they were delivered at confirm). The nine sum to member_count on a complete group.
Show child attributes
Show child attributes
A non-negative JavaScript-safe integer credit amount. The upper bound matches Number.MAX_SAFE_INTEGER, which is enforced by the domain ledger so arithmetic and JSON round-trips cannot silently lose cents worth of credit precision.
0 <= x <= 9007199254740991A non-negative JavaScript-safe integer credit amount. The upper bound matches Number.MAX_SAFE_INTEGER, which is enforced by the domain ledger so arithmetic and JSON round-trips cannot silently lose cents worth of credit precision.
0 <= x <= 9007199254740991A non-negative JavaScript-safe integer credit amount. The upper bound matches Number.MAX_SAFE_INTEGER, which is enforced by the domain ledger so arithmetic and JSON round-trips cannot silently lose cents worth of credit precision.
0 <= x <= 9007199254740991Past this, a still-pending group is swept.
An ISO 8601 timestamp, or null.
An ISO 8601 timestamp, or null.

