Root (fka Slim.ai) OSVFeed API

The OSVFeed API from Root (fka Slim.ai) — 3 operation(s) for osvfeed.

Operations 5

GET /external/osv/all.json Get OSV feed index
HEAD /external/osv/all.json Get OSV feed index metadata
GET /external/osv/all.zip Get all OSV records as zip archive
GET /external/osv/{id}.json Get individual OSV record
HEAD /external/osv/{id}.json Get individual OSV record metadata

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/root-fka-slimai-osvfeed-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

root-fka-slimai-osvfeed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This is the API documentation for Root.io.
  title: Root.io Accounts OSV Feed API
  termsOfService: https://www.root.io/terms-of-service
  contact: {}
  version: '1.0'
servers:
- url: https://api.root.io
tags:
- name: OSVFeed
paths:
  /external/osv/all.json:
    get:
      description: Returns a lightweight index of all vulnerabilities with only id and modified timestamp. Industry standard format for OSV feeds. Clients should use this to check for updates and fetch individual records as needed.
      tags:
      - OSVFeed
      summary: Get OSV feed index
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/osvfeed.IndexEntry'
    head:
      description: Returns HTTP headers with metadata (Last-Modified, ETag, Content-Length) about the index file without downloading the content. Useful for checking if the index has been updated.
      tags:
      - OSVFeed
      summary: Get OSV feed index metadata
      responses:
        '200':
          description: 'Headers: Last-Modified, ETag, Content-Length, Content-Type'
  /external/osv/all.zip:
    get:
      description: Returns a zip archive containing every individual OSV advisory as a flat {id}.json file. Mirrors the format used by osv.dev bulk downloads.
      tags:
      - OSVFeed
      summary: Get all OSV records as zip archive
      responses:
        '200':
          description: OK
          content:
            application/zip:
              schema:
                type: string
                format: binary
  /external/osv/{id}.json:
    get:
      description: Returns the full vulnerability record for a specific OSV ID
      tags:
      - OSVFeed
      summary: Get individual OSV record
      parameters:
      - description: OSV ID (e.g., ROOT-OS-ALPINE-318-CVE-2023-1234)
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/osvfeed.OSVVulnerability'
    head:
      description: Returns HTTP headers with metadata (Last-Modified, ETag, Content-Length) about a specific OSV record without downloading the content. Useful for checking if a record has been updated.
      tags:
      - OSVFeed
      summary: Get individual OSV record metadata
      parameters:
      - description: OSV ID (e.g., ROOT-OS-ALPINE-318-CVE-2023-1234)
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 'Headers: Last-Modified, ETag, Content-Length, Content-Type'
components:
  schemas:
    osvfeed.OSVReference:
      type: object
      properties:
        type:
          type: string
          example: WEB
        url:
          type: string
          example: https://root.io/security/ROOT-OS-ALPINE-318-CVE-2023-1234
    osvfeed.OSVEvent:
      type: object
      properties:
        fixed:
          type: string
          example: 3.0.8-r10071
        introduced:
          type: string
          example: '0'
    osvfeed.OSVRange:
      type: object
      properties:
        events:
          type: array
          items:
            $ref: '#/components/schemas/osvfeed.OSVEvent'
        type:
          type: string
          example: ECOSYSTEM
    osvfeed.OSVVulnerability:
      type: object
      properties:
        affected:
          type: array
          items:
            $ref: '#/components/schemas/osvfeed.OSVAffected'
        aliases:
          type: array
          items:
            type: string
          example:
          - CVE-2023-1234
        details:
          type: string
        id:
          type: string
          example: ROOT-OS-ALPINE-318-CVE-2023-1234
        modified:
          type: string
          example: '2024-11-24T00:00:00Z'
        published:
          type: string
          example: '2024-01-15T00:00:00Z'
        references:
          type: array
          items:
            $ref: '#/components/schemas/osvfeed.OSVReference'
        schema_version:
          type: string
          example: 1.6.0
        summary:
          type: string
          example: CVE-2023-1234 in root-openssl - Patched by Root
    osvfeed.IndexEntry:
      type: object
      properties:
        id:
          type: string
        modified:
          type: string
    osvfeed.OSVAffected:
      type: object
      properties:
        package:
          $ref: '#/components/schemas/osvfeed.OSVPackage'
        ranges:
          type: array
          items:
            $ref: '#/components/schemas/osvfeed.OSVRange'
    osvfeed.OSVPackage:
      type: object
      properties:
        ecosystem:
          type: string
          example: Alpine:3.18
        name:
          type: string
          example: root-openssl
        purl:
          type: string
          example: pkg:apk/alpine/root-openssl@3.0.8-r10071?arch=source&distro=alpine-3.18
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic