thyme/labs
Start building
Thyme Gate

Thyme / Gate

A direct line to the chain.

Read state, fetch logs, and send transactions through a project endpoint. Keep your app on the JSON-RPC interface you already know.

30MCU free each month
300requests / second to start
RPC / REQUEST
Example exchange
chain 1

Request · POST $THYME_RPC_URL

{
  "jsonrpc": "2.0",
  "method": "eth_chainId",
  "params": [],
  "id": 1
}

Response · 200 OK

{
  "jsonrpc": "2.0",
  "result": "0x1",
  "id": 1
}
JSON-RPC 2.0Illustrative response

01 / Connect

Keep your client. Change the URL.

Create a key, choose a network, and paste its endpoint into the client you use today. No custom transport or SDK required.

01

Create a key

Keys belong to your project. Name them for each app or environment, and revoke them in the console when you rotate access.

project / api keys
02

Choose a network

Pick a mainnet or testnet endpoint. The console shows the exact HTTPS URL for every network available to your project.

network / endpoint
03

Send a request

Use the URL with any JSON-RPC client. Reads, logs, and transaction submissions go through the same familiar interface.

POST / json-rpc
client.tsviem
import { createPublicClient, http } from 'viem'
import { base } from 'viem/chains'

const client = createPublicClient({
  chain: base,
  transport: http(process.env.THYME_RPC_URL),
})

const block = await client.getBlockNumber()

02 / Networks

Change the chain. Keep the client.

Switch networks by changing the endpoint and chain configuration. Available HTTPS URLs appear in your project console alongside chain IDs and network status.

Ethereum

Mainnet · Sepolia

01

Base

Mainnet · Sepolia

8453

Polygon

Mainnet · Amoy

137

Arbitrum

Mainnet · Sepolia

42161

Optimism

Mainnet · Sepolia

10

Avalanche

Mainnet · Fuji

43114

Representative networks. Check the console for the current endpoint list and availability.

03 / Visibility

See the traffic behind the bill.

The console tracks requests, errors, and compute units. Inspect usage by method, see traffic for each API key, and follow your free allowance through the billing cycle.

  • Requests and errors by network
  • Compute units by RPC method
  • Traffic and last use per API key
USAGE / COMPUTE UNITSILLUSTRATIVE
12.8M/ 30M free
THIS CYCLE
011530 DAYS
eth_call6.4M CU
eth_getLogs4.1M CU
Other methods2.3M CU

04 / Pricing

Start at zero. Scale by usage.

One pay-as-you-go plan. Your first 30 million compute units each month are free; usage above that is metered.

Pay as you go
$0.40/ 1M CU after free allowance
30M CUfree every month
300 req/sstarting throughput

Need more throughput or a signed SLA? Talk to us about enterprise.

Start here

Your client is ready. Give it an endpoint.