Read one voice profile
GET
/v1/voice-profiles/{profile_id}
const url = 'https://api.vocapable.com/v1/voice-profiles/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/voice-profiles/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”profile_id
required
Profile Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
VoiceProfileSummary
A voice profile as its tenant sees it.
consent_proof_uri being null is exactly the gate: a profile cannot reach approved
without one, enforced in the repository and again by a table CHECK constraint.
object
id
required
Id
string
name
required
Name
string
provider
required
Provider
string
status
required
Status
string
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
Example
{ "status": "pending_review"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}