Radicle Repositories API

Radicle repositories seeded by the node

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/radicle-repositories-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

radicle-repositories-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Radicle HTTP API (radicle-httpd) Issues Repositories API
  version: 6.1.0
  x-generated: '2026-07-20'
  x-method: searched
  x-source: https://seed.radicle.xyz/api/v1
  description: 'Radicle is a sovereign, peer-to-peer code collaboration stack built on Git. Each Radicle node can run `radicle-httpd`, a lightweight HTTP daemon that exposes a read-oriented JSON API over the node''s local storage: repositories (Radicle Object Bag / COBs), issues, patches, commits, trees, blobs, node info and network statistics. This specification was derived by probing the live public seed node at https://seed.radicle.xyz/api/v1 (radicle-httpd 0.25.0, apiVersion 6.1.0). Read endpoints are public and unauthenticated; write operations on a self-hosted node require a signed session created with the node''s key. Identifiers use Radicle conventions: Repository IDs (`rad:`), Node IDs (`z6Mk...`, a did:key), and DIDs (`did:key:...`).

    '
  contact:
    name: Radicle
    url: https://radicle.dev/
  license:
    name: MIT OR Apache-2.0
servers:
- url: https://seed.radicle.xyz/api/v1
  description: Public community seed node (read-only)
- url: https://{node}/api/v1
  description: Any self-hosted radicle-httpd node
  variables:
    node:
      default: seed.radicle.xyz
tags:
- name: Repositories
  description: Radicle repositories seeded by the node
paths:
  /repos:
    get:
      tags:
      - Repositories
      operationId: listRepos
      summary: List seeded repositories
      description: Lists repositories seeded by this node, with their project payload, delegates and visibility.
      parameters:
      - name: page
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
      - name: perPage
        in: query
        required: false
        schema:
          type: integer
          minimum: 1
      - name: show
        in: query
        required: false
        schema:
          type: string
          enum:
          - all
          - pinned
      responses:
        '200':
          description: Array of repositories
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Repo'
  /repos/{rid}:
    get:
      tags:
      - Repositories
      operationId: getRepo
      summary: Get a repository
      parameters:
      - $ref: '#/components/parameters/Rid'
      responses:
        '200':
          description: Repository
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Repo'
        '404':
          description: Repository not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /repos/{rid}/activity:
    get:
      tags:
      - Repositories
      operationId: getRepoActivity
      summary: Repository activity timeline
      description: Returns an array of Unix timestamps representing repository activity.
      parameters:
      - $ref: '#/components/parameters/Rid'
      responses:
        '200':
          description: Activity timestamps
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Activity'
  /delegates/{did}/repos:
    get:
      tags:
      - Repositories
      operationId: getDelegateRepos
      summary: List repositories delegated to a DID
      parameters:
      - name: did
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Array of repositories
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Repo'
components:
  schemas:
    Repo:
      type: object
      properties:
        rid:
          type: string
        payloads:
          type: object
        delegates:
          type: array
          items:
            $ref: '#/components/schemas/Did'
        threshold:
          type: integer
        visibility:
          type: object
          properties:
            type:
              type: string
              enum:
              - public
              - private
        seeding:
          type: integer
        refs:
          type: object
    Activity:
      type: object
      properties:
        activity:
          type: array
          items:
            type: integer
            description: Unix timestamp
    Did:
      type: object
      properties:
        id:
          type: string
          description: DID (did:key:...)
        alias:
          type: string
    Error:
      type: object
      description: Error envelope returned by radicle-httpd.
      properties:
        error:
          type: string
        code:
          type: integer
      required:
      - error
      - code
  parameters:
    Rid:
      name: rid
      in: path
      required: true
      description: Repository ID (e.g. rad:z6cFWeWpnZNHh9rUW8phgA3b5yGt)
      schema:
        type: string