Projects
Organization Management
Get project details by ID With Org Api key
Retrieves detailed information about a specific project using its unique identifier. This endpoint provides complete project configuration including webhook URLs, creation and update timestamps, and webhook secrets. Use this endpoint to inspect project settings or verify project configuration.
get/api/v3.1/org/owner/project/{nano_id}
Path parameters
nano_idstring projectId required
Unique identifier (Nano ID) of the project to retrieve
Example:pr_1a2b3c4d5e6f
Unique identifier (Nano ID) of the project to retrieve
Response
Project retrieved successfully. Returns a complete project object with all configuration details and associated API keys.
Example response
{
"id": "pr_1a2b3c4d5e6f",
"org_id": "ok_1a2b3c4d5e6f",
"name": "My Awesome Project",
"email": "project-123@composio.dev",
"created_at": "2023-05-16T14:30:00.000Z",
"updated_at": "2023-05-18T09:15:30.000Z",
"webhook_url": "https://example.com/webhook",
"event_webhook_url": "https://example.com/events",
"webhook_secret": "whsec_abcdef123456789",
"triggers_enabled": true,
"last_subscribed_at": "2023-05-17T10:00:00.000Z",
"is_new_webhook": true,
"webhook_version": "V2",
"api_keys": [
{
"id": "01H4DKRF5SMP7NQCA3BWT0JYB6",
"name": "Production Server Key",
"key": "ak_**6j0z",
"created_at": "2023-07-15T14:30:00.000Z"
}
]
}