Spin · Example Payload

Spin Manifest Example

Example Spin application manifest (spin.toml equivalent in JSON) for an HTTP API application with key-value storage and AI model access

Cloud-NativeMicroservicesServerlessWebAssembly

Spin Manifest Example is an example object payload from Spin, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionmanifest

Example Payload

spin-manifest-example.json Raw ↑
{
  "description": "Example Spin application manifest (spin.toml equivalent in JSON) for an HTTP API application with key-value storage and AI model access",
  "manifest": {
    "spin_manifest_version": 2,
    "application": {
      "name": "hello-spin",
      "version": "1.0.0",
      "description": "A simple HTTP API built with Spin WebAssembly",
      "authors": ["developer@example.com"]
    },
    "variables": {
      "api_key": {
        "required": true,
        "secret": true
      },
      "environment": {
        "required": false,
        "default": "production"
      }
    },
    "component": {
      "api": {
        "source": "target/wasm32-wasi/release/api.wasm",
        "description": "HTTP API handler component",
        "allowed_outbound_hosts": ["https://api.example.com"],
        "key_value_stores": ["default"],
        "ai_models": ["llama2-chat"],
        "variables": {
          "api_key": "{{api_key}}",
          "env": "{{environment}}"
        },
        "trigger": {
          "http": {
            "route": "/api/..."
          }
        },
        "build": {
          "command": "cargo build --target wasm32-wasi --release",
          "workdir": ".",
          "watch": ["src/**/*.rs", "Cargo.toml"]
        }
      }
    }
  }
}

Work with this as data

Every example 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 examples

4 MCP tools reach this
  • find_examplesBrowse and filter every example in the catalog.
  • 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 example
curl "https://apis.io/api/v1/examples/spin-manifest-example"
All examples
curl "https://apis.io/api/v1/examples?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.