
* fix relrefs around trends and related entities * revert moving caption-links to middle of page * hide empty menu in table of contents * clarify edit notifs are only for boosted statuses * following/followers no longer need auth * fix typo * specify cooldown period for account Move * use the correct cooldown * add missing parameters to accounts/id/statuses * link to account_statuses_filter.rb * fix typo (#1072) * fix typo (#1073) * fix link to http sig spec (#1067) * simply HTTP request examples in api methods docs * add missing client_secret to oauth/token (#1062) * Add any, all, none to hashtag timeline * minor formatting changes * Update signature requirements and advice * fix public key -> private key * clarify use of RSA with SHA256 * Add note about saving your profile after adding rel-me link * v2 filters api * comment out params that shouldn't be used in v2 filter api * admin trends * remove old todo * canonical email blocks + scheduled statuses * remove under-construction warnings from finished pages * verify api method params with source code * fix typo (#1088) * fix broken caption-links (#1100) * fix formatting of entities (#1094) * Remove keybase section from user guide (#1093) * fix typos (#1092) * Verify limits are accurate (#1086) * add mention of iframe limitation (#1084) * Add CORS header to WEB_DOMAIN example (#1083) * Fix typo (#1081) * pin http sigs spec at draft 8 * Revert "pin http sigs spec at draft 8" This reverts commit 9fd5f7032b69b29e77599dd62adfe8d2f5cd4f20. * add case sensitivity warning to 4.0 roles * Add url length note to bio (#1087) * remove follow scope from examples (#1103) * clarify usage of update_credentials to update profile fields * add noindex to Account entitity * remove required hint from technically not required property
5.3 KiB
title | description | menu | aliases | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
search API methods | Search for content in accounts, statuses and hashtags. |
|
|
Perform a search
GET /api/v2/search HTTP/1.1
Returns: [Search]({{< relref "entities/Search" >}})
OAuth: Public (without resolve
or offset
), or User token + read:search
Version history:
2.4.1 - added, limit hardcoded to 5
2.8.0 - add type
, limit
, offset
, min_id
, max_id
, account_id
3.0.0 - add exclude_unreviewed
param
3.3.0 - min_id
and max_id
can be used together
4.0.0 - no longer requires a user token. Without a valid user token, you cannot use the resolve
or offset
parameters.
Request
Headers
- Authorization
- {{}} Provide this header with
Bearer <user token>
to gain authorized access to this API method.
Query parameters
- q
- {{}} String. The search query.
- type
- String. Specify whether to search for only
accounts
,hashtags
,statuses
- resolve
- Boolean. Attempt WebFinger lookup? Defaults to false.
- following
- Boolean. Only include accounts that the user is following? Defaults to false.
- account_id
- String. If provided, will only return statuses authored by this account.
- exclude_unreviewed
- Boolean. Filter out unreviewed tags? Defaults to false. Use true when trying to find trending tags.
- max_id
- String. Return results older than this ID.
- min_id
- String. Return results immediately newer than this ID.
- limit
- Integer. Maximum number of results to return, per type. Defaults to 20 results per category. Max 40 results per category.
- offset
- Integer. Skip the first n results.
Response
200: OK
Truncated results of a sample search for "cats" with limit=2.
{
"accounts": [
{
"id": "180744",
"username": "catstar",
"acct": "catstar@catgram.jp",
"display_name": "catstar",
// ...
},
{
"id": "214293",
"username": "catsareweird",
"acct": "catsareweird",
"display_name": "Cats Are Weird",
// ...
}
],
"statuses": [
{
"id": "103085519055545958",
"created_at": "2019-11-05T13:23:09.000Z",
// ...
"content": "<p>cats<br>cats never change</p>",
// ...
},
{
"id": "101068121469614510",
"created_at": "2018-11-14T06:31:48.000Z",
// ...
"spoiler_text": "Cats",
// ...
"content": "<p>Cats are inherently good at self-care. </p><p><a href=\"https://mspsocial.net/tags/cats\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>cats</span></a></p>",
// ...
],
"hashtags": [
{
"name": "cats",
"url": "https://mastodon.social/tags/cats",
"history": [
{
"day": "1574553600",
"uses": "10",
"accounts": "9"
},
// ...
]
},
{
"name": "catsofmastodon",
"url": "https://mastodon.social/tags/catsofmastodon",
"history": [
{
"day": "1574553600",
"uses": "6",
"accounts": "5"
},
// ...
]
}
]
}
401: Unauthorized
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
(REMOVED) Search results (v1)
GET /api/v1/search HTTP/1.1
Returns: [Search]({{< relref "entities/Search" >}}), but hashtags
is an array of strings instead of an array of Tag.
OAuth: User token + read:search
Version history:
1.1 - added, limit hardcoded to 5
1.5.0 - now requires authentication
2.4.1 - deprecated in favor of v2 search
2.8.0 - added limit
, pagination, and account options
3.0.0 - removed; use v2 search instead
Request
Headers
- Authorization
- {{}} Provide this header with
Bearer <user token>
to gain authorized access to this API method.
Query parameters
- q
- {{}} String. The search query.
- type
- String. Specify whether to search for only
accounts
,hashtags
,statuses
- resolve
- Boolean. Attempt WebFinger lookup? Defaults to false.
- account_id
- String. If provided, will only return statuses authored by this account.
- max_id
- String. Return results older than this ID.
- min_id
- String. Return results immediately newer than this ID.
- limit
- Integer. Maximum number of results to return, per type. Defaults to 20 results per category. Max 40 results per category.
- offset
- Integer. Offset in search results, used for pagination. Defaults to 0.
Response
200: OK
v1 search was deprecated because hashtags were returned as strings instead of as Tag entities.
{
"accounts": [...],
"statuses": [...],
"hashtags": ["cats","catsofmastodon"]
}
401: Unauthorized
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
See also
{{< page-relref ref="methods/accounts#search" caption="GET /api/v1/accounts/search" >}}
{{< page-relref ref="methods/accounts#lookup" caption="GET /api/v1/accounts/lookup" >}}
{{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/controllers/api/v2/search_controller.rb" caption="app/controllers/api/v2/search_controller.rb" >}}