v1

latestOpenAPI 3.1.0EVE Developer License2026-07-17208257682.6 KB
Corporation Projects

Get project details

Get the details of a corporation project.

get/corporations/{corporation_id}/projects/{project_id}

Path parameters

corporation_idinteger required
Example:98777771

The ID of the corporation

project_idstring uuid required
Example:3868eaed-8278-4cb7-9709-7d7de9c20dc7

The ID of the project

Headers

If-Modified-Sincestring

The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.

Accept-Language'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'

The language to use for the response.

If-None-Matchstring

The ETag of the previous request. A 304 will be returned if this matches the current ETag.

X-Compatibility-Date'2025-12-16' date required

The compatibility date for the request.

X-Tenantstring

The tenant ID for the request.

Response

OK

idstring uuid required
last_modifiedstring date-time required

Moment this project was last modified. Project contributions also count as a modification

namestring required

Project's name

state'Unspecified' | 'Active' | 'Closed' | 'Completed' | 'Expired' | 'Deleted' required

Project's current state

Example response

{
  "configuration": {
    "capture_fw_complex": {
      "archetypes": [
        {
          "archetype_id": 33
        }
      ],
      "factions": [
        {
          "faction_id": 500002
        }
      ],
      "locations": [
        {
          "solar_system_id": 30000001
        }
      ]
    }
  },
  "contribution": {
    "participation_limit": 1000,
    "reward_per_contribution": 123.5,
    "submission_limit": 100,
    "submission_multiplier": 1.5
  },
  "creator": {
    "id": 90000001,
    "name": "Creator Name"
  },
  "details": {
    "career": "Explorer",
    "created": "2025-06-01T00:00:00Z",
    "description": "Project Description",
    "expires": "2025-06-01T00:01:00Z",
    "finished": "2025-06-01T00:00:00Z"
  },
  "id": "3868eaed-8278-4cb7-9709-7d7de9c20dc7",
  "last_modified": "2025-06-01T00:00:00Z",
  "name": "Project Name",
  "progress": {
    "current": 50,
    "desired": 100
  },
  "reward": {
    "initial": 12345.5,
    "remaining": 5432.1
  },
  "state": "Active"
}