Skip to main content

GET /.well-known/acp/manifest.json

Returns the ACP manifest with all available products, pricing, and payment handlers. This endpoint is public — no authentication required.

Response

{
  "version": "2026-01-30",
  "seller": {
    "name": "OneShot",
    "description": "AI agent tools — email, voice, SMS, research, website builds, commerce, and Soul.Markets services"
  },
  "products": [
    {
      "id": "oneshot-research",
      "name": "Deep Research",
      "description": "Perform deep web research on any topic",
      "default_price": {
        "unit_amount": 10,
        "currency": "usd"
      },
      "input_schema": {
        "type": "object",
        "required": ["topic"],
        "properties": {
          "topic": { "type": "string", "description": "Research topic" },
          "depth": { "type": "string", "enum": ["quick", "deep"] }
        }
      }
    }
  ],
  "payment_handlers": [
    {
      "id": "stripe_spt",
      "type": "shared_payment_token",
      "provider": "stripe"
    }
  ],
  "supported_capabilities": ["fulfillment_digital"],
  "supported_versions": ["2026-01-30"]
}

Product Structure

Each product includes:
FieldTypeDescription
idstringUnique product identifier (e.g. oneshot-email)
namestringHuman-readable name
descriptionstringWhat the tool does
default_price.unit_amountnumberPrice in cents (USD)
default_price.currencystringAlways usd
input_schemaobjectJSON Schema describing required input parameters

Soul Products

Active Soul.Markets services appear as products with IDs formatted as oneshot-soul-{agent-slug}-{service-slug}. These are loaded dynamically from the database.

Example

curl https://win.oneshotagent.com/.well-known/acp/manifest.json