Skip to content

/ido Endpoints

Base URL: /ido

Available Endpoints

/<id>/entries?<distributed>&<owner_nfthash>&<offset>&<limit>

Endpoint: GET /<id>/entries

Status: Unstable

Description: List entries for an IDO.

  • id: the IDO's public id (preinit txid, 64-char hex)
  • distributed: optional boolean filter
  • owner_nfthash: optional filter by owner nfthash (hex). Multiple hashes may be supplied comma-delimited; up to 20 per request. An entry matches if its owner_nfthash equals any of the supplied values.

Pagination: offset (default 0), limit (default 20, max 100)

/by-id/<id>

Endpoint: GET /by-id/<id>

Status: Unstable

Description: Get a single IDO by id token ID. Returns null if not found.

/by-offering-token/<offering_token_id>

Endpoint: GET /by-offering-token/<offering_token_id>

Status: Unstable

Description: Get a single IDO by its offering token ID. Returns null if not found.

/list?<is_valid>&<status>&<offered_token_id>&<offset>&<limit>

Endpoint: GET /list

Status: Unstable

Description: List IDOs with optional filters and pagination.

Filters: - is_valid: boolean filter on the is_valid flag - status: one of PREINIT, ACTIVE, DISTRIBUTING, DISTRIBUTED - offered_token_id: 64-char hex token ID (reversed display format)

Pagination: offset (default 0), limit (default 20, max 100)

Example URI: /list


← Back to Index