Firecracker Boot Source API

The Boot Source API from Firecracker — 1 operation(s) for boot source.

Operations 1

PUT /boot-source Creates or updates the boot source. Pre-boot only. #

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/firecracker-boot-source-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

firecracker-boot-source-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Firecracker Actions Boot Source API
  description: RESTful public-facing API. The API is accessible through HTTP calls on specific URLs carrying JSON modeled data. The transport medium is a Unix Domain Socket.
  version: 1.16.0-dev
  termsOfService: ''
  contact:
    email: firecracker-maintainers@amazon.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: http://localhost/
tags:
- name: Boot Source
paths:
  /boot-source:
    put:
      summary: Creates or updates the boot source. Pre-boot only.
      description: Creates new boot source if one does not already exist, otherwise updates it. Will fail if update is not possible.
      operationId: putGuestBootSource
      responses:
        204:
          description: Boot source created/updated
        400:
          description: Boot source cannot be created due to bad input
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Boot Source
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BootSource'
        description: Guest boot source properties
        required: true
components:
  schemas:
    Error:
      type: object
      properties:
        fault_message:
          type: string
          description: A description of the error condition
          readOnly: true
    BootSource:
      type: object
      required:
      - kernel_image_path
      description: Boot source descriptor.
      properties:
        boot_args:
          type: string
          description: Kernel boot arguments
        initrd_path:
          type: string
          description: Host level path to the initrd image used to boot the guest
        kernel_image_path:
          type: string
          description: Host level path to the kernel image used to boot the guest