Technical Writing Project • Sarah AmaliaFind random activities to fight your boredom. You can access the API from their official website at: The App Brewery
This guide will walk you through the simplest way to get a random activity from the Bored API. You will made your first request and explore the rest of the API
This endpoint does not require any parameters. To make the request, simply copy the command below and paste it into your terminal.
GET `https://bored-api.appbrewery.com/random`
A succesful response will return a 200 OK status and a JSON object containing a random activity. The response will look similar to this:

Cngratulations! You’ve succesfully made your first API call and received a valid response.
Now, you can explore the other endpoints in the API References section below. This includes the ability to filter activities by type and participants.
This section provides a complete and detailed reference for /random and /filter endpoints. This is the place to find specific information on request parameters, response fields, and examples.
This endpoint returns a randomly selected activity from the available activities. It’s designed for applications that want to provide a quick, fun suggestion for you.
GET https://bored-api.appbrewery.com/random
This endpoint does not require any parameters.
The response is a JSON object with the following fields:
| Field | Type | Description |
|---|---|---|
activity |
string | A string representing the suggested activity. |
availability |
number | A value between 0.0 and 1.0 that indicates how accessible the activity is. A value of 0.0 means it’s freely available, while 1.0 indicates a high barrier. |
type |
string | The category of the activity (e.g., “recreational,” “social,” “cooking”). |
participants |
number | The number of people required for the activity. |
price |
number | A numeric value between 0.0 and 1.0, where 0.0 is free and 1.0 is the most expensive. |
accessibility |
string | A clear-language description of the activity’s accessibility. |
duration |
string | The expected time required for the activity (e.g., “hours,” “minutes”). |
kidFriendly |
boolean | A boolean value (true or false) indicating if the activity is suitable for children. |
link |
string | A URL for more information, if available. |
key |
string | A unique identifier for the activity. |

This endpoint returns a list of activities that have been filtered by specific criteria, such as activity type or the number of participants. It is a powerful tool for building applications that require a more tailored and relevant user experience.
GET https://bored-api.appbrewery.com/filter
This endpoint accepts the following optional query parameters to refine the search results.
| Parameter | Type | Description | Accepted Values |
|---|---|---|---|
type |
string | The type of activity to filter by. You can only specify one type per request. | education, recreational, social, charity, cooking, relaxation, busywork |
participants |
number | The exact number of participants required for the activity. | 1, 2, 3, 4, 5, 6, 8 |
The following cURL command retrieves activities for exactly one participant that are categorized as education.
GET 'https://bored-api.appbrewery.com/filter?type=education&participants=1'
The response is a JSON array containing one or more activity objects that match the specified filters. Each object in the array has the following fields:
| Field | Type | Description |
|---|---|---|
activity |
string | A string representing the suggested activity |
availability |
number | A value between 0.0 and 1.0 indicating how accessible the activity is |
type |
string | The category of the activity |
participants |
number | The number of people required for the activity |
price |
number | A numeric value between 0.0 and 1.0, where 0.0 is free |
accessibility |
string | A clear-language description of the activity’s accessibility |
duration |
string | The expected time required for the activity |
kidFriendly |
boolean | A boolean value (true or false) indicating if the activity is suitable for children |
link |
string | A URL for more information, if available |
key |
string | A unique identifier for the activity |

Document Version: 1.0 • Last Updated: Oct,2025 • Maintained by Sarah Amalia