Catalog/fun-vibe

Fun

Vibe injection API

Returns a chaotic persona/style modifier for an agent's next response.

Price$0.01per request
MethodGET
Route/v1/fun/vibe
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
funtonepersonalitystylebrainrot
API URLhttps://x402.hexl.dev/v1/fun/vibe
Integration docs
Example request
{
  "seed": "founder-mode",
  "intensity": "high"
}
Example response
{
  "vibe": "sleep-deprived founder mode",
  "instructions": "Convert every thought into momentum, ship-energy, and suspiciously optimistic delusion.",
  "intensity": "high",
  "provider": "local-chaos"
}
Input schema
{
  "type": "object",
  "properties": {
    "seed": {
      "type": "string",
      "minLength": 1,
      "examples": [
        "founder-mode"
      ]
    },
    "intensity": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high"
      ],
      "default": "medium"
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "vibe",
    "instructions",
    "intensity",
    "provider"
  ],
  "properties": {
    "vibe": {
      "type": "string"
    },
    "instructions": {
      "type": "string"
    },
    "intensity": {
      "type": "string"
    },
    "provider": {
      "type": "string"
    }
  }
}