Catalog/misc-activity-idea

Data

Random activity suggestion (Bored API) API

Suggest a random activity to beat boredom, optionally filtered by type and number of participants, from the Bored API. Answers 'suggest an activity','what should I do','an activity for 2 people','a free thing to do'.

Price$0.01per request
MethodPOST
Route/v1/data/misc-activity-idea
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
dataactivityboredsuggestionideasboredapifunhobby
API URLhttps://x402.hexl.dev/v1/data/misc-activity-idea
Integration docs
Example request
{
  "type": "recreational",
  "participants": 2
}
Example response
{
  "activity": "Go see a Broadway production",
  "type": "recreational",
  "participants": 2,
  "price": 0.8,
  "isFree": false,
  "accessibility": 0.5,
  "duration": "hours",
  "link": null,
  "id": "3490217"
}
Input schema
{
  "type": "object",
  "required": [],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "education",
        "recreational",
        "social",
        "diy",
        "charity",
        "cooking",
        "relaxation",
        "music",
        "busywork"
      ],
      "examples": [
        "recreational"
      ]
    },
    "participants": {
      "type": "number",
      "examples": [
        2
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}