Launch Week 02 wrapped — explore all five launches

List Projects

GEThttps://api.confident-ai.com/v2/projects

Lists every project in your organization, ordered by name. Each project is returned in full, including the governance policy it is enrolled in, so a caller building a project picker does not need a second call per row.

GET/v2/projects
curl -X GET "https://api.confident-ai.com/v2/projects" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "projects": [
      {
        "id": "<PROJECT-ID>",
        "name": "Customer Support Agent",
        "description": "The support chatbot serving acme.com.",
        "organizationId": "<ORGANIZATION-ID>",
        "created_at": "2025-01-14T09:30:00.000Z",
        "governancePolicy": {
          "id": "<GOVERNANCE-POLICY-ID>",
          "name": "EU AI Act"
        }
      }
    ]
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Response

List Projects succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    The organization's projects. The list is not paginated: every project is returned.

    Show 1 propertyHide 1 property
    • projectslist of objects

      Every project in the organization, ordered by name.

      Show 6 propertiesHide 6 properties
      • idstring

        The id of the project, generated by Confident AI.

      • namestring

        The name of the project, unique within the organization.

      • descriptionstring | null

        What the project covers, or null when it has no description.

      • organizationIdstring

        The id of the organization the project belongs to.

      • created_atstring

        When the project was created.

      • governancePolicyobject | null

        The governance policy a project is enrolled in, named rather than resolved. Retrieve the policy itself to see the controls it enforces.

        Show 2 propertiesHide 2 properties
        • idstring

          The id of the governance policy, generated by Confident AI.

        • namestring

          The name of the governance policy.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI