Filecoin

This section provides information specific to the Filecoin blockchain.

RPC API Highlights

This section highlights features and important details about the Filecoin RPC API.

API Versions

Lotus offers two API versions: /rpc/v0 includes only native methods (Filecoin.*), while /rpc/v1 supports EVM-compatible methods (eth_*). If you don't specify a version (making a request to https://api.node.glif.io/), the default version used is /rpc/v1.

Notice: Parameter differences exist for native methods between these versions.

Batch Requests

Proteus Shield supports HTTP batch requests to the Filecoin RPC API, and the service currently allows up to 100 requests in a single batch.

Example:

curl --location 'https://api.node.glif.io/rpc/v1' \
--header 'Content-Type: application/json' \
--data '[
    {
	    "jsonrpc":"2.0",
	    "method":"Filecoin.ChainHead",
	    "params":[],
	    "id":1
    },
    {
	    "jsonrpc":"2.0",
	    "method":"Filecoin.ChainHead",
	    "params":[],
	    "id":2
    }
]'

Lotus Lite

Proteus Shield offers endpoints compatible with Lotus Lite nodes. For more details, visit Lotus Lite. Start your Lotus Lite node by substituting the API key and endpoint in the command below:

FULLNODE_API_INFO=API_KEY:ENDPOINT lotus daemon --lite

The available endpoints are:

Network
Endpoint

Mainnet

wss://wss.node.glif.io/apigw/lotus

Calibnet

wss://wss.calibnet.glif.io/apigw/lotus

Pricing

This section serves as the definitive guide for all Filecoin-related pricing information.

Growth Plan

The Growth plan offers a cost-effective way to access Filecoin APIs. You pay a one-time access fee and then only pay for the compute units (CU) you use. The underlying infrastructure is shared between you and other users.

Endpoint

Network

Data Availability

Access Fee

Recent-state mainnet

Mainnet

Latest 2k blocks

Free

$1

FVM archive mainnet

Mainnet

All blocks since FEVM launch

$300

$1.5

Full archive mainnet

Mainnet

All blocks since genesis

$500

$3

Recent-state calibnet

Calibnet

Latest 2k blocks

Free

$0.5

Full archive calibnet

Calibnet

All blocks since genesis

$100

$1.5

Notice: Recent-state mainnet and recent-state calibnet endpoints have separate HTTPS and WebSocket implementations that are shown as separate endpoints in the UI. This is purely a UI implementation detail so do not be confused: they are billed as a single endpoint.

Dedicated Nodes

The Dedicated plan provides exclusive nodes for your specific needs. You only pay a fixed monthly fee. The underlying infrastructure is dedicated to you.

Network
Data Availability
Monthly Fee

Mainnet

Latest 2K blocks

$1000

Mainnet

All blocks since FEVM launch

$3500

Mainnet

All blocks since genesis

$5000

Calibnet

Latest 2K blocks

$600

Calibnet

All blocks since genesis

$800

Last updated