For the complete documentation index, see llms.txt. This page is also available as Markdown.

Projects

List all projects using API key authentication

get

Retrieves all projects using API key authentication instead of JWT

Authorizations
x-api-keystringRequired
Responses
200

Projects retrieved successfully

application/json
successbooleanOptional
get/api/v1/projects/xapi-list-all
GET /api/v1/projects/xapi-list-all HTTP/1.1
Host: api.loci-dev.net
x-api-key: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "data": [
    {
      "_id": "text",
      "name": "text",
      "description": "text",
      "organizationId": "text",
      "createdAt": "2026-01-01T00:00:00.000Z",
      "updatedAt": "2026-01-01T00:00:00.000Z"
    }
  ]
}

Get project versions using API key authentication

post

Retrieves all versions for a project using API key authentication instead of JWT

Authorizations
x-api-keystringRequired
Body
projectIdstringOptional

ID of the project to fetch versions for

organizationIdstringOptional

ID of the organization

Responses
200

Project versions retrieved successfully

application/json
successbooleanOptional
post/api/v1/graph/xapi-project-versions
POST /api/v1/graph/xapi-project-versions HTTP/1.1
Host: api.loci-dev.net
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 44

{
  "projectId": "text",
  "organizationId": "text"
}
{
  "success": true,
  "data": [
    {
      "version": "text",
      "reportId": "text"
    }
  ]
}

Last updated

Was this helpful?