v1

latestOpenAPI 3.1.0EVE Developer License2026-07-17208257682.6 KB
Routes

Get route between two systems

Calculate the systems between the given origin and destination.

post/route/{origin_system_id}/{destination_system_id}

Path parameters

origin_system_idinteger required
Example:30000001

Origin system

destination_system_idinteger required
Example:30000001

Destination system

Headers

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.

Request body

avoid_systemsSolarSystemID[]

Systems to avoid

preference'Shorter' | 'Safer' | 'LessSecure'

Preference for the route

security_penaltyinteger

Strictness of the path preference

Example request

{
  "avoid_systems": [
    30000001
  ],
  "connections": [
    {
      "from": 30000001,
      "to": 30000001
    }
  ]
}

Response

OK

routeSolarSystemID[] required

The route between the origin and destination systems

Example response

{
  "route": [
    30000001
  ]
}