gifchain-mainnet-1chain id 6464head #4,134,618gas 0.42 ngifblock 5.00sall systems operationalrpcexplorerdocs
GIFCHAIN

GIFCHAIN

the blockchain for NFTs  ·  objects, not just balances

REST API

A thin read-only layer over the indexer. Every response is JSON, every list endpoint pages with cursor and limit, and nothing is cached longer than one block.

reference
endpointqueryreturns
GET /v1/blockscursor, limitblock headers, newest first
GET /v1/blocks/:heighta block with its transactions
GET /v1/txs/:hashtransaction and receipt
GET /v1/objectscollection, owner, trait, cursorobject records with traits
GET /v1/objects/:slug/:ida single object
GET /v1/objects/:slug/:id/framesframeraw frame bytes, image/gif
GET /v1/collectionscategory, sortcollections with live stats
GET /v1/wallets/:addressbalance, holdings and counters
GET /v1/activitytype, collection, sinceoperation feed

Responses carry the height they were computed at. If you are reconciling state, compare that height rather than wall-clock time.

example
curl 'https://api.gifchain.net/v1/objects?collection=gifcats&limit=2'

{
  "data": [
    { "key": "gifcats#1", "owner": "0x7f3a...", "rarityRank": 41 },
    { "key": "gifcats#2", "owner": "0x1c08...", "rarityRank": 187 }
  ],
  "cursor": "eyJvIjoyfQ",
  "height": 4128733
}