Get Destination
GEThttps://api.confident-ai.com/v2/export-destinations/{exportDestinationId}
Retrieves an export destination by id. Its credentials come back masked — fifteen asterisks followed by the last six characters of the stored value — so you can tell which key is in use without the key itself being returned.
curl -X GET "https://api.confident-ai.com/v2/export-destinations/{exportDestinationId}" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"id": "<EXPORT-DESTINATION-ID>",
"name": "Nightly S3 exports",
"type": "S3",
"bucket": "acme-llm-exports",
"region": "us-east-1",
"accessKeyId": "***************XAMPLE",
"secretAccessKey": "***************PLEKEY",
"pathPrefix": "confident-ai/",
"enabled": true,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-20T08:15:00.000Z"
},
"link": "https://app.confident-ai.com/project/<PROJECT-ID>/project-settings/exports",
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Path parameters
exportDestinationIdstringRequiredThe id of the export destination.
Response
Get Destination succeeded.
successbooleanIndicates if the request was successful.
dataobjectA storage destination export schedules upload to, with its credentials masked. Confident AI returns the last six characters of each credential so you can tell which one is stored, never the credential itself.
Show 11 propertiesHide 11 properties
idstringThe id of the destination, generated by Confident AI.
namestringThe name of the destination.
typeenumThe kind of storage exports are uploaded to. Only
S3is supported today, and any other member is rejected on create and update.Show 4 enum valuesHide 4 enum values
S3GCSAZURE_BLOBSNOWFLAKE
bucketstringThe name of the bucket exports are uploaded to.
regionstringThe region the bucket lives in.
accessKeyIdstringThe stored access key id, masked: fifteen asterisks followed by its last six characters. The real key id is never returned. Send this value back on an update to leave the stored key id alone, or omit the field entirely.
secretAccessKeystringThe stored secret access key, masked: fifteen asterisks followed by its last six characters. The real secret is never returned. Send this value back on an update to leave the stored secret alone, or omit the field entirely.
pathPrefixstring | nullThe folder inside the bucket exports are written under, always ending in a slash, or null when they are written to the root of the bucket.
enabledbooleanWhether export schedules may upload to this destination.
createdAtstringThe timestamp when the destination was created.
updatedAtstringThe timestamp when the destination was last updated.
linkstringThis is the URL of the resource on the Confident AI platform.
deprecatedbooleanIndicates if this endpoint is deprecated.