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
      • GETList Projects
      • POSTCreate Project
      • GETRetrieve Project
      • PUTUpdate Project
      • DELDelete Project
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsProjects

Retrieve Project

GET
https://api.confident-ai.com/v1/projects/:projectId
GET
/v1/projects/:projectId
$curl https://api.confident-ai.com/v1/projects/projectId \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "project": {
5 "id": "PROJECT-ID",
6 "name": "Production App",
7 "description": "Main production application",
8 "organizationId": "ORGANIZATION-ID",
9 "created_at": "2024-12-04T23:00:00.000Z"
10 }
11 }
12}
Retrieves a single project by id. The project must belong to the organization the API key is scoped to.
Was this page helpful?
Previous

Update Project

Next
Built with

Path parameters

projectIdstringRequired
The unique identifier of the project to retrieve.

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Response

successboolean
Indicates if the request was successful
dataobject