Documentation Index
Fetch the complete documentation index at: https://docs.near.org/llms.txt
Use this file to discover all available pages before exploring further.
Deprecated: NEAR Lake is no longer maintainedAs of March 24, 2026, NEAR Lake (AWS S3 buckets) has stopped indexing new blocks and is no longer maintained by Aurora. Existing data remains accessible for historical use, but no new blocks will be written.Recommended alternatives:
- Neardata — direct drop-in replacement for NEAR Lake
- Data APIs — community APIs from NearBlocks, Pikespeak, and FastNear
- Goldsky — managed indexer service
- Nearcore Indexer — run your own indexer node
GitHub repoYou can find the Lake Indexer source code in this GitHub repository.
Data structure
The data structure used by Lake Indexer is the following:<block_height> is a 12-character-long u64 string with leading zeros (e.g “000042839521”). See this issue for reasoning.
block_json contains JSON-serialized BlockView struct. NB! this struct might change in the future, we will announce it
shard_N.json where N is u64 starting from 0. Represents the index number of the shard. In order to find out the expected number of shards in the block you can look in block.json at .header.chunks_included
How to use it
We have created the NEAR Lake Framework to have a simple straightforward way to create an indexer on top of the data stored by NEAR Lake itself.NEAR Lake FrameworkYou can check the NEAR Lake Framework release announcement on the NEAR Governance Forum.