/api/v1/contractscached 30sPaginated search over every public contract we have ingested, across all EVE regions. Filters combine with AND. `q` matches the contract title OR the name of any included item, which is usually what you want — EVE contract titles are frequently blank or generic.
| Parameter | Type | Description |
|---|---|---|
| region_id | integer[] | Region id. Repeat or comma-separate for multiple. Also accepted as `region`. |
| type | string[] | Contract type. Repeatable.One of: unknown, item_exchange, auction, courier, loan |
| status | string[] | Contract status. Repeatable. Omitted means everything except deleted/cancelled/reversed.One of: outstanding, in_progress, finished_issuer, finished_contractor, finished, cancelled, rejected, failed, deleted, reversed |
| availability | string[] | Contract availability. Repeatable.One of: public, personal, corporation, alliance |
| category | string | Match contracts containing at least one included item in this item category. Full list at /api/v1/categories.One of: ship, blueprint_original, blueprint_copy, blueprint, module, charge, drone, implant, skill, commodity, structure, structure_module, deployable, subsystem, fighter, skin, planetary, special_edition |
| q | string | Case-insensitive substring match on contract title or included item names. |
| price_min | number | Minimum price in ISK. |
| price_max | number | Maximum price in ISK. |
| issuer_corporation_id | integer | Only contracts issued by this corporation. Also accepted as `issuer_corp`. |
| sort | string | Sort column.One of: date_issued, date_expired, price, volume, collateralDefault: date_issued |
| dir | string | Sort direction.One of: asc, descDefault: desc |
| page | integer | 1-based page number.Default: 1 |
| page_size | integer | Results per page, 10–200. Also accepted as `limit`.Default: 50 |
{ data: ContractSummary[], meta: { page, page_size, total, total_pages } }
curl 'https://contracts.tovdc.com/api/v1/contracts?region_id=10000002&type=item_exchange&category=ship&sort=price&dir=asc'