Self.ID Node API

Node health and configuration information

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/self-id-node-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

self-id-node-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Ceramic HTTP Commits Node API
  description: Low-level REST HTTP API for the Ceramic node (js-ceramic), providing the underlying transport for all Self.ID SDK operations. Exposes endpoints to create/load streams by StreamID or CommitID, batch-load streams via multiQuery, manage anchoring and pinning, and access the Data Feed for custom indexers.
  version: 0.1.0
  contact:
    name: Ceramic Network
    url: https://ceramic.network
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://gateway.ceramic.network
  description: Ceramic Gateway (read-only)
- url: https://ceramic-clay.3boxlabs.com
  description: Clay testnet node
tags:
- name: Node
  description: Node health and configuration information
paths:
  /api/v0/node/healthcheck:
    get:
      tags:
      - Node
      summary: Node Healthcheck
      description: Verifies the Ceramic node is operational and ready to serve requests.
      operationId: nodeHealthcheck
      responses:
        '200':
          description: Node is healthy
          content:
            text/plain:
              schema:
                type: string
                example: Alive!
        '503':
          description: Node is not healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /api/v0/node/chains:
    get:
      tags:
      - Node
      summary: Supported Chains
      description: Lists the blockchain networks (CAIP-2 chain IDs) supported by this Ceramic node for anchoring.
      operationId: getSupportedChains
      responses:
        '200':
          description: List of supported chain IDs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SupportedChainsResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SupportedChainsResponse:
      type: object
      properties:
        supportedChains:
          type: array
          description: CAIP-2 chain IDs supported by this node for anchoring
          items:
            type: string
          example:
          - eip155:1
          - eip155:5
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message