blocks
View your blocks. See also accounts/:id/{block,unblock}
getBlocked users
/api/v1/blocks
Returns: Array of Account
OAuth: User token + read:blocks
Version history:
0.0.0 - added
Request
Headers
Authorization
required
string
Bearer <user token>
Query Parameters
max_id
optional
string
Internal parameter. Use HTTP Link header for pagination instead.
since_id
optional
string
Internal parameter. Use HTTP Link header for pagination instead.
limit
optional
string
Maximum number of results. Defaults to 40.
Response
200: Success
Sample call with limit=2. Because block ids are private, you must parse the HTTP Link
header to find next and previous pages.
Link: <https://mastodon.social/api/v1/blocks?limit=2&max_id=441449>; rel="next", <https://mastodon.social/api/v1/blocks?limit=2&since_id=444808>; rel="prev"
[
{
"id": "585315",
"username": "admin",
"acct": "admin@happylittle.cloudns.cc",
"display_name": "☁️ ⛅ Happy Little Clouds ⛅ ☁️",
"locked": false,
"bot": false,
"created_at": "2018-11-09T21:37:50.982Z",
"note": "Novice programmer. Freedom lover. Distributed network software enthusiast.",
"url": "https://happylittle.cloudns.cc/users/admin",
"avatar": "https://files.mastodon.social/accounts/avatars/000/585/315/original/5a2d62acfe7f6e7d.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/585/315/original/5a2d62acfe7f6e7d.png",
"header": "https://files.mastodon.social/accounts/headers/000/585/315/original/122940e256a42ac8.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/585/315/original/122940e256a42ac8.png",
"followers_count": 25,
"following_count": 41,
"statuses_count": 173,
"last_status_at": "2019-11-21T14:59:07.345Z",
"emojis": [],
"fields": []
},
{
"id": "650568",
"username": "Nikolai_Kingsley",
"acct": "Nikolai_Kingsley@dobbs.town",
"display_name": "Rev.Dr. Nikolai Kingsley",
"locked": false,
"bot": false,
"created_at": "2018-12-15T02:25:57.424Z",
"note": "<p>Justifiability is in the hands of the beholder<br>And you just don't know what people will do next<br> - todd rundgren, \"Zen Archer\"</p>",
"url": "https://dobbs.town/@Nikolai_Kingsley",
"avatar": "https://files.mastodon.social/accounts/avatars/000/650/568/original/2e80c95aab9f8071.gif",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/650/568/static/2e80c95aab9f8071.png",
"header": "https://files.mastodon.social/accounts/headers/000/650/568/original/10c19760ca5bbae5.jpeg",
"header_static": "https://files.mastodon.social/accounts/headers/000/650/568/original/10c19760ca5bbae5.jpeg",
"followers_count": 135,
"following_count": 130,
"statuses_count": 10807,
"last_status_at": "2019-11-23T08:07:34.745Z",
"emojis": [],
"fields": []
}
]
401: Unauthorized
If the Authorization header contains an invalid token, is malformed, or is not present, an error will be returned indicating an authorization failure.
{
"error": "The access token is invalid"
}
Last updated December 27, 2020 · Improve this page