v1

latestOpenAPI 3.1.0EVE Developer License2026-07-17208257682.6 KB
Freelance Jobs

Get freelance job details

Get the details of a freelance job.

Jobs without an ACL (public jobs) does not require authentication.

Jobs with an ACL requires authentication, and requires that the character is:

  • An active participant of the job, or
  • A freelance job manager for the corporation that owns the job.
get/freelance-jobs/{job_id}

Path parameters

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

The ID of the freelance job

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

Job's last modified

namestring required

Job's name

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

Job's state

Example response

{
  "access_and_visibility": {
    "broadcast_locations": [
      {
        "id": 30000001,
        "name": "Jita"
      }
    ],
    "restrictions": {
      "maximum_age": 100,
      "minimum_age": 10
    }
  },
  "configuration": {
    "method": "BoostShield",
    "version": 1
  },
  "contribution": {
    "contribution_per_participant_limit": 1000,
    "max_committed_participants": 10000,
    "reward_per_contribution": 123.5,
    "submission_limit": 100,
    "submission_multiplier": 1.5
  },
  "details": {
    "career": "Explorer",
    "created": "2025-11-01T00:00:00Z",
    "creator": {
      "character": {
        "id": 90000001,
        "name": "Creator Name"
      },
      "corporation": {
        "id": 98777771,
        "name": "Creator Corporation"
      }
    },
    "description": "Freelance Job Description",
    "expires": "2025-11-01T00:01:00Z",
    "finished": "2025-11-01T00:00:00Z"
  },
  "id": "3868eaed-8278-4cb7-9709-7d7de9c20dc7",
  "last_modified": "2025-11-01T00:00:00Z",
  "name": "Freelance Job Name",
  "progress": {
    "current": 50,
    "desired": 100
  },
  "reward": {
    "initial": 12345.5,
    "remaining": 5432.1
  },
  "state": "Active"
}