Authentication
/api/v1/auth
Sign-in, session management, OAuth, passkeys, password recovery, and realtime tokens.
POST /api/v1/auth/loginGET /api/v1/auth/sessionGET /api/v1/auth/oauth/providersPOST /api/v1/auth/logout
API
Developer overview for the coThink REST API hosted at app.wecothink.com.
All application API requests are made against:
https://app.wecothink.com/api/v1
Browser clients use cookie-based sessions with CSRF protection. Server-to-server integrations should use credentials issued for your organization and follow the authentication flow documented for your deployment.
Most tenant-scoped routes return a JSON envelope:
{
"success": true,
"data": { },
"meta": { },
"error": null
}
When success is false, error includes a machine-readable code and human-readable message. Authentication routes may return flat JSON objects during sign-in and OAuth flows.
/api/v1/auth
Sign-in, session management, OAuth, passkeys, password recovery, and realtime tokens.
POST /api/v1/auth/loginGET /api/v1/auth/sessionGET /api/v1/auth/oauth/providersPOST /api/v1/auth/logout/api/v1/tenants/{tenantId}
Organization-scoped resources including rooms, files, tasks, and collaboration data.
Room and membership operationsMessages, files, and whiteboard contentTasks, decisions, and calendar-linked work/api/v1/tenants/{tenantId}/rooms/{roomId}/sessions
Session lifecycle, artifacts, facilitation state, and structured submissions.
Create and advance guided sessionsSubmit structured session artifactsExport session outcomes to workspace records/api/v1/tenants/{tenantId}/personal-advisor
Advisor memory, planning proposals, and tenant-scoped assistant workflows.
Advisor context and memory endpointsAutonomous planning proposals and approvals/api/v1/tenants/{tenantId}/providers
Connect AI providers, calendars, and other approved integrations for a tenant.
Provider configuration and credential managementUsage and routing controls/health, /api/system/status
Operational health endpoints for monitoring deployments and dependencies.
GET /healthGET /api/system/statusProduct documentation · Security overview · Request API access