Retrieve project
GEThttps:/api.openai.com/v1/organization/projects/{project_id}
Retrieves a project.
Path parameters
project_id
string
Required
The ID of the project.
Response
The Project object matching the specified ID.
Example request
1 curl https://api.openai.com/v1/organization/projects/proj_abc \2 -H "Authorization: Bearer $OPENAI_ADMIN_KEY" \3 -H "Content-Type: application/json"
Example response
1 {2 "id": "proj_abc",3 "object": "organization.project",4 "name": "Project example",5 "created_at": 1711471533,6 "archived_at": null,7 "status": "active"8 }
Built with