🚀 Introducing Flux, the first conversational speech recognition model built for voice agents. (Learn more!)🚀

PlaygroundConsoleCommunitySupportFree API Key
HomeAPI ReferenceVoice AgentSpeech-to-TextText-to-SpeechIntelligenceSelf-Hosted Deployments
HomeAPI ReferenceVoice AgentSpeech-to-TextText-to-SpeechIntelligenceSelf-Hosted Deployments
  • General
    • Deepgram API Overview
    • Authentication
    • Custom Endpoints
    • Errors
    • API Rate Limits
  • API Reference
LogoLogo
PlaygroundConsoleCommunitySupportFree API Key
API ReferenceSelf HostedV1Distribution Credentials

GET
/v1/projects/:project_id/self-hosted/distribution/credentials/:distribution_credentials_id
GET
/v1/projects/:project_id/self-hosted/distribution/credentials/:distribution_credentials_id
1import requests
2
3url = "https://api.deepgram.com/v1/projects/project_id/self-hosted/distribution/credentials/distribution_credentials_id"
4
5headers = {"Authorization": "<apiKey>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
200Retrieved
1{
2 "member": {
3 "member_id": "c7b9b131-73f3-11d9-8665-0b00d2e44b83",
4 "email": "email@example.com"
5 },
6 "distribution_credentials": {
7 "distribution_credentials_id": "82c32c10-53b2-4d23-993f-864b3d44502a",
8 "provider": "quay",
9 "scopes": [
10 "self-hosted:product:api",
11 "self-hosted:product:engine"
12 ],
13 "created": "2023-06-28T15:36:59.609841Z",
14 "comment": "My Self-Hosted Distribution Credentials"
15 }
16}
Was this page helpful?
Previous

Delete a Project Self-Hosted Distribution Credential

Next
Built with
Returns a set of distribution credentials for the specified project

Get a Project Self-Hosted Distribution Credential

Path parameters

project_idstringRequired
distribution_credentials_idstringRequired

Headers

AuthorizationstringRequired

Response

Single distribution credential
memberobject
distribution_credentialsobject

Errors