Get current project

Returns the project associated with the API key used for authentication.

The project contains metadata about your organization's configuration, including:

  • Project ID and organization ID
  • Project name and slug
  • Creation and update timestamps

This endpoint is useful for verifying your API key is valid and retrieving project details.

GET
/project
AuthorizationBearer <token>

Project API key

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api.reminix.ai/v1/project"
{
  "id": "proj_abc123",
  "organizationId": "org_xyz789",
  "name": "My Project",
  "slug": "my-project",
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-20T14:22:00Z"
}
{
  "error": "Invalid or missing API key"
}
{
  "error": "Resource not found"
}