List Destinations
GEThttps://api.confident-ai.com/v2/export-destinations
Lists the export destinations in your Confident AI project one page at a time, newest first. Each destination is returned without its credentials; retrieve one by id to see them in masked form.
curl -X GET "https://api.confident-ai.com/v2/export-destinations" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"exportDestinations": [
{
"id": "<EXPORT-DESTINATION-ID>",
"name": "Nightly S3 exports",
"type": "S3",
"bucket": "acme-llm-exports",
"enabled": true
}
],
"totalExportDestinations": 2,
"page": 1,
"pageSize": 25
},
"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.
Query parameters
pageintegerdefault: 1The page to return. Defaults to 1.
pageSizeintegerdefault: 25The number of results per page, at most 100. Defaults to 25.
Response
List Destinations succeeded.
successbooleanIndicates if the request was successful.
dataobjectOne page of destinations, with the total across all pages.
Show 4 propertiesHide 4 properties
exportDestinationslist of objectsThe destinations for the current page, newest first.
Show 5 propertiesHide 5 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.
enabledbooleanWhether export schedules may upload to this destination.
totalExportDestinationsintegerThe total number of destinations in this project.
pageintegerThe page this response covers.
pageSizeintegerThe number of destinations per page.
linkstringThis is the URL of the resource on the Confident AI platform.
deprecatedbooleanIndicates if this endpoint is deprecated.