Bored API · Example Payload

Bored Api Submit Suggestion Example

ActivitiesBoredomCommunityDevelopmentDiscoveryEducationFactsFreeMEVNNo AuthOpen SourcePublic APIsRecreationRiddlesSuggestionsWebsites

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

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://www.boredapi.com/api/v2/suggestions",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "activity": {
        "activity": "Build a small Raspberry Pi weather station",
        "type": "diy",
        "participants": 1
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "message": "Successfully created suggestion"
    }
  }
}