API · Read-only

Celina API

Public read-only HTTP API for Celo mainnet. Same snake_case tool names as Celina SDK/MCP, without server private keys.

Production base URL

https://api.usecelina.xyz

Endpoints

Catalog

GET /v1/tools lists available read tools and schemas.

Metadata

GET /v1/:name returns metadata for one tool.

Invocation

POST /v1/:name executes the read tool with JSON input.

Examples

Get tool metadata

curl -sS https://api.usecelina.xyz/v1/get_network_status

Invoke tool with POST

curl -sS https://api.usecelina.xyz/v1/get_network_status \
  -H 'Content-Type: application/json' \
  -d '{}'

Full reference and additional examples: GitBook docs. You can also browse tool schemas on the tools page.