Evetech
Connector for the evetech API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://esi.evetech.net/latest - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
get_alliances— GET /alliances/ — List all alliancesget_alliances_alliance_id— GET /alliances/{alliance_id}/ — Get alliance informationget_alliances_alliance_id_contacts— GET /alliances/{alliance_id}/contacts/ — Get alliance contactsget_alliances_alliance_id_contacts_labels— GET /alliances/{alliance_id}/contacts/labels/ — Get alliance contact labelsget_alliances_alliance_id_corporations— GET /alliances/{alliance_id}/corporations/ — List alliance's corporationsget_alliances_alliance_id_icons— GET /alliances/{alliance_id}/icons/ — Get alliance icon
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_alliances
# (attach an 'oauth' credential to the task — no inline secrets)