Launch Week 02 wrapped — explore all five launches

Retrieve Organization

GEThttps://api.confident-ai.com/v1/organization

Retrieves the organization that the API key is scoped to.

GET/v1/organization
curl -X GET "https://api.confident-ai.com/v1/organization" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "organization": {
      "id": "ORGANIZATION-ID",
      "name": "Acme Inc.",
      "plan": "PREMIUM",
      "created_at": "2024-12-04T23:00:00.000Z"
    }
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 1 propertyHide 1 property
    • organizationobject

      Show 4 propertiesHide 4 properties
      • idstring

        Unique identifier for the organization

      • namestring

        Name of the organization

      • planenum

        The organization's current billing plan

        Show 6 enum valuesHide 6 enum values
        • TRIAL
        • FREE
        • STARTER
        • ENTERPRISE
        • TEAM
        • PREMIUM
      • created_atstring

        ISO 8601 timestamp of when the organization was created

Built byConfident AI