Skip to Content
API AccessProjects

Get reports from API

Base URL: app.coana.tech

The following endpoints are available:

  • GET /api/v1/projects
    Returns a list of ProjectEntity belonging to the organisation of the provided apiKey.

Report Type Definition

interface ProjectEntity { id: number; name: string; description?: string | null; repoUrl: string | null; createdAt: Date; }