For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Data Models
      • GETRetrieve Organization
      • PUTUpdate Organization
        • GETList Organization API Keys
        • GETGet Organization API Key
        • POSTCreate Organization API Key
        • PUTUpdate Organization API Key
        • DELRevoke Organization API Key
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsOrganizationAPI Keys

List Organization API Keys

GET
https://api.confident-ai.com/v1/organization/api-keys
GET
/v1/organization/api-keys
$curl https://api.confident-ai.com/v1/organization/api-keys \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "apiKeys": [
5 {
6 "id": 12,
7 "valid": true,
8 "value": "***************a1b2c3",
9 "created_at": "2024-12-04T23:00:00.000Z",
10 "name": "CI/CD key",
11 "lastUsed": "2024-12-05T10:15:00.000Z"
12 }
13 ]
14 }
15}

Lists all organization-scoped API keys. Each key’s value is redacted (only the last 6 characters are shown) — the full value is only ever returned once, at creation.

Was this page helpful?
Previous

Get Organization API Key

Next
Built with

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Response

successboolean
Indicates if the request was successful
dataobject