Introduction

Work in progress!

I have just started this project, there is not much actual data yet. Stay tuned!

Various fediverse software has adopted the 'Mastodon Api' as the unofficial-official standard for clients to consume. However, as this api is ever evolving it's hard to tell exactly that means. This project attempts to document exactly what is available for each version of each major compatible software.

The idea is to be able to answer questions like:

  • "What apis are widely supported?"
  • "Which versions can I call this api on?"
  • "What deprecated apis are safe to not support?"

The following outlines the software name and version format for the nodeinfo endpoint for various fedi software.

Warning

Instances may customize the version so this list is not exhaustive. You should never match against a version exactly. In most cases the version will start with the api version it is compatible with.

Mastodon

Name

mastodon

Version

Uses semantic versioning. Pre-releases are appended with -alpha.[n], -beta.[n], or -rc.[n]. Nightlies are appended with -nightly.[YYYY-MM-DD].

Examples

  • 4.3.1
  • 4.4.0-alpha.1
  • 4.3.0-beta.2
  • 4.3.0-rc.1
  • 4.4.0-nightly.2024-10-28

Mastodon Glitch Edition (glitch-soc)

Name

mastodon

Version

Uses a Mastodon version with +glitch appended. The mastodon version may be a pre-release or nightly.

Examples

  • 4.1.4+glitch
  • 4.3.0-alpha.3+glitch
  • 4.3.0-nightly.2024-08-25+glitch

GoToSocial

Name

gotosocial

Version

Versions 0.14.0 and above use semantic versioning. Pre-releases are appended a git hash +git-[hash] which may be prefix with -rc[n] for release candidates or -SNAPSHOT for nightlies.

Examples

0.14.0+

  • 0.17.0
  • 0.14.0+git-7bc536d
  • 0.15-rc1+git-65b5366
  • 0.17.0-SNAPSHOT+git-f037663

Contributing

Setup

Clone the repository

git clone 'https://github.com/evant/mastodon-api-compatibility.git'
cd mastodon-api-compatibility

You need rust to build & run the project. The most convenient way to install it is via rustup.

You can then build the website locally with

cargo run

You can serve the website with any static file server. If you have python you can run

cd public
python3 -m http.server

To re-run after changes you can use cargo-watch.

Tip: if you aren't editing the rust code, you can build with release.

cargo install cargo-watch
cargo watch -x 'run --release'

Data format

The data is stored in a series of toml files in the data directory. There is a software.toml file that defines which software is available. Everything else defines the api.

software.toml

Has a table to software with some data for each. The table key is what to use to reference it in other files.

 # the software key
[mastodon]
# (required) The name to display.
name = "Mastodon"
# (optional) A default link to the software's documentation.
# Used when an api-specific link isn't provided.
docs = "https://docs.joinmastodon.org/"

[api-name].toml

Each file defines a section of the api. The file name is used as the name in the side-bar. Note that you can nest files in directories to create sub-sections. For example, if you have accounts.toml and accounts/bookmarks.toml, bookmarks will be nested under accounts.

If you aren't familiar with toml, you can read about it here. A key thing to note is these two table formats are equivalent:

id = { mastodon = "0.0.0", gotosocial = "0.1.0" }
id.mastodon = "0.0.0"
id.gotosocial = "0.1.0"

There are two types of top-level sections. api and entity.

Api

[[api]]
# (required) The request, this is recommend but not required to be unique.
# Includes the http verb and the path.
request = "GET /api/v1/accounts/:id"
# (optional) The software that supports this api.
# You can either use the short-form: mastodon = "0.0.0"
# or the long form: mastodon = { version = "0.0.0", docs = "..." }.
# More details about version definitions below.
[api.software]
mastodon.version = "0.0.0"
mastodon.docs = "https://docs.joinmastodon.org/methods/accounts/#get"
mastodon.note = "returns 410 if account is suspended in 2.4.0, returns with suspended=true instead of 410 in 3.3.0"
# (optional) The parameters for this api.
# Each parameter includes a table of software versions.
[api.params]
id.mastodon = "0.0.0"
# (optional) The responses for this api.
# This example has the response declared inline.
[api.response]
id.mastodon = "0.1.0"
username.mastodon = "0.1.0"

If only one response is defined, it's assumed to be for a 200 response. You may define multiple responses with an http-code. (Note the additional square baces to turn it into an array).

[[api]]
request = "GET /api/v1/accounts/:id"
[api.software]
mastodon.version = "0.0.0"
[[api.response]]
id.mastodon = "0.1.0"
username.mastodon = "0.1.0"
[[api.response]]
http-code = 404
error.mastodon = "0.1.0"

A response may also have nested keys or array.

  • You can append [] to indicate an array,
  • and [name] to indicate a nested key.
  • If the nested keys are an arbitrary map, you can use [:key][name].
# An array: [field, field, ..]
"fields[]".mastodon = "2.4.0"
# A nested key: "source": { "privacy": "public" }
"source[privacy]".mastodon = "1.5.0"
# An arbitrary map: "details": { "some-key": { "name": "value" } }
"details[:key][name]".mastodon = "3.4.0"

Versions

You can define a software version in a couple ways. The shortest form is just a string.

mastodon = "0.0.0"

The long form allows you to define additional information.

# (required) The version.
mastodon.version = "0.0.0"
# (optional) A documentation link for this api.
mastodon.docs = "https://docs.joinmastodon.org/"
# (optional) The version this api was deprecated.
mastodon.deprecated = "1.2.3"
# (optional) The version this api was removed.
mastodon.removed = "2.2.3"
# (optional) An arbitrary note about this api or attribute.
mastodon.note = "behavior changed in 1.4.3"

Since only a couple of these are likely to be used at a time, you can use the inline table format.

id.mastodon = { version = "0.0.0", deprecated = "4.0.0" }

Entity

While above can technically define any api response, it is often useful to pull out common attributes so they can be re-used. You can do this by defining an entity.

# Defines an entity with key 'account'. Entity keys must be globally unique.
[entity.account]
# (optional) The name to display. If not provided, it is derived from the key.
name = "Account"
# (optional) The software that supports this entity.
[entity.account.software]
mastodon.version = "0.0.0"
# (optional) The attributes for this entity. These are declared the same way as in
# a response.
[entity.account.attributes]
id.mastodon = "0.0.0"
username.mastodon = "0.0.0"

You can then reference this entity for a specific attribute.

[[api]]
request = "GET /api/v1/accounts/verify_credentials"
[api.response]
role.entity = "role"
role.version = "0.0.0"

Or an entire response.

[[api]]
request = "GET /api/v1/accounts/:id"
response = "account"

This works with arrays as well.

[[api]]
request = "GET /api/v1/accounts/:id"
[api.response]
"fields[]".entity = "field"
"fields[]".mastodon = "2.4.0"

If the whole api response is an array, you can use the following syntax.

[[api]]
request = "GET /api/v1/accounts"
response = "account[]"

Finally, entities can be used to define enum values. This is done by defining values instead of attributes.

[entity.visibility]
name = "Visibility"
[entity.visibility.values]
public.mastodon = "0.0.0"

Accounts

POST /api/v1/accounts

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
agreement 2.7.0
email 2.7.0
locale 2.7.0
password 2.7.0
reason 3.0.0
username 2.7.0
422 ResponseMastodonGoToSocial
details[][:key][description] 3.4.0
details[][:key][error] Account Error3.4.0
error 2.7.0

GET /api/v1/accounts/verify_credentials

SoftwareVersion
Mastodon 0.0.0
GoToSocial
Response Credential AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
role Role4.0.0
source 2.4.0
source[fields] Field2.4.0
source[follow_requests_count] 3.0.0
source[language] 2.4.2
source[note] 1.5.0
source[privacy] Visibility1.5.0
source[sensitive] 1.5.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

PATCH /api/v1/accounts/update_credentials

SoftwareVersion
Mastodon 1.1.1
GoToSocial
ParametersMastodonGoToSocial
avatar 1.1.1
bot 1.1.1
discoverable 2.7.0
display_name 1.1.1
fields_attributes 1.1.1
fields_attributes[:index][name] 1.1.1
fields_attributes[:index][value] 1.1.1
header 1.1.1
hide_collections 4.1.0
indexable 4.2.0
locked 2.3.0
note 1.1.1
source[language] 2.4.2
source[privacy] 2.4.0
source[sensitive] 2.4.0
Response Credential AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
role Role4.0.0
source 2.4.0
source[fields] Field2.4.0
source[follow_requests_count] 3.0.0
source[language] 2.4.2
source[note] 1.5.0
source[privacy] Visibility1.5.0
source[sensitive] 1.5.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/:id

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id[] 4.3.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/:id/statuses

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
exclude_reblogs 2.7.0
exclude_replies 1.4.2
id 0.0.0
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
only_media 1.4.2
pinned 1.6.0
since_id 0.0.0
tagged 2.8.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/accounts/:id/followers

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
since_id 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/:id/following

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
since_id 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/:id/featured_tags

SoftwareVersion
Mastodon 3.3.0
GoToSocial
ParametersMastodonGoToSocial
id 3.3.0
Response Featured Tag[]MastodonGoToSocial
id 3.0.0
last_status_at 3.0.0
name 3.0.0
status_count 3.0.0
url 3.3.0

GET /api/v1/accounts/:id/lists

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
id 2.1.0
Response List[]MastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

POST /api/v1/accounts/:id/follow

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
languages[] 4.0.0
notify 3.3.0
reblogs 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/unfollow

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/remove_from_followers

SoftwareVersion
Mastodon 3.5.0
GoToSocial
ParametersMastodonGoToSocial
id 3.5.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/block

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/unblock

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/mute

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
duration 3.5.0
id 0.0.0
notifications 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/unmute

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/pin

SoftwareVersion
Mastodon 2.5.0
GoToSocial
ParametersMastodonGoToSocial
id 2.5.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/unpin

SoftwareVersion
Mastodon 2.5.0
GoToSocial
ParametersMastodonGoToSocial
id 2.5.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/accounts/:id/note

SoftwareVersion
Mastodon 3.2.0
GoToSocial
ParametersMastodonGoToSocial
comment 3.2.0
id 3.2.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

GET /api/v1/accounts/relationships

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id[] 0.0.0
with_suspend 4.3.0
Response Relationship[]MastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

GET /api/v1/accounts/familiar_followers

SoftwareVersion
Mastodon 3.5.0
GoToSocial
ParametersMastodonGoToSocial
id[] 3.5.0
Response Familiar Followers[]MastodonGoToSocial
accounts 3.5.0
id 3.5.0

GET /api/v1/accounts/search

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
following 2.8.0
limit 2.8.0
offset 2.8.0
q 0.0.0
resolve 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/lookup

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ParametersMastodonGoToSocial
acct 3.4.0
Response AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/accounts/:id/identity_proofs

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ParametersMastodonGoToSocial
id 2.8.0
ResponseMastodonGoToSocial
profile_url 2.8.0
proof_url 2.8.0
provider 2.8.0
provider_username 2.8.0
updated_at 2.8.0

Blocks

GET /api/v1/blocks

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Bookmarks

GET /api/v1/bookmarks

SoftwareVersion
Mastodon 3.1.0
GoToSocial
ParametersMastodonGoToSocial
limit 3.1.0
max_id 3.1.0
min_id 3.1.0
since_id 3.1.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

Domain_blocks

GET /api/v1/domain_blocks

SoftwareVersion
Mastodon 1.4.0
GoToSocial
ParametersMastodonGoToSocial
limit 1.4.0
ResponseMastodonGoToSocial
[] 1.4.0

POST /api/v1/domain_blocks

SoftwareVersion
Mastodon 1.4.0
GoToSocial
ParametersMastodonGoToSocial
domain 1.4.0

DELETE /api/v1/domain_blocks

SoftwareVersion
Mastodon 1.4.0
GoToSocial
ParametersMastodonGoToSocial
domain 1.4.0

Endorsements

GET /api/v1/endorsements

SoftwareVersion
Mastodon 2.5.0
GoToSocial
ParametersMastodonGoToSocial
limit 2.5.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Favourites

GET /api/v1/favourites

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 3.1.0
max_id 0.0.0
min_id 2.6.0
since_id 3.1.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

Featured_tags

GET /api/v1/featured_tags

SoftwareVersion
Mastodon 3.0.0
GoToSocial
Response Featured Tag[]MastodonGoToSocial
id 3.0.0
last_status_at 3.0.0
name 3.0.0
status_count 3.0.0
url 3.3.0

POST /api/v1/featured_tags

SoftwareVersion
Mastodon 3.0.0
GoToSocial
ParametersMastodonGoToSocial
name 3.0.0
Response Featured TagMastodonGoToSocial
id 3.0.0
last_status_at 3.0.0
name 3.0.0
status_count 3.0.0
url 3.3.0

DELETE /api/v1/featured_tags/:id

SoftwareVersion
Mastodon 3.0.0
GoToSocial
ParametersMastodonGoToSocial
id 3.0.0

GET /api/v1/featured_tags/suggestions

SoftwareVersion
Mastodon 3.0.0
GoToSocial
Response Tag[]MastodonGoToSocial
name 0.9.0
url 0.9.0

Filters

GET /api/v2/filters

SoftwareVersion
Mastodon 4.0.0
GoToSocial
Response Filter[]MastodonGoToSocial
context Filter Context4.0.0
expires_at 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords[] Filter Keyword4.0.0
statuses[] Filter Status4.0.0
title 4.0.0

GET /api/v2/filters/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response FilterMastodonGoToSocial
context Filter Context4.0.0
expires_at 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords[] Filter Keyword4.0.0
statuses[] Filter Status4.0.0
title 4.0.0

POST /api/v2/filters

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
context[] Filter Context4.0.0
expires_in 4.0.0
filter_action Filter Action4.0.0
keywords_attributes[][keyword] 4.0.0
keywords_attributes[][whole_word] 4.0.0
title 4.0.0
Response FilterMastodonGoToSocial
context Filter Context4.0.0
expires_at 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords[] Filter Keyword4.0.0
statuses[] Filter Status4.0.0
title 4.0.0

PUT /api/v2/filters/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
context[] Filter Context4.0.0
expires_in 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords_attributes[][_destroy] 4.0.0
keywords_attributes[][id] 4.0.0
keywords_attributes[][keyword] 4.0.0
keywords_attributes[][whole_word] 4.0.0
title 4.0.0
Response FilterMastodonGoToSocial
context Filter Context4.0.0
expires_at 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords[] Filter Keyword4.0.0
statuses[] Filter Status4.0.0
title 4.0.0

DELETE /api/v2/filters/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0

GET /api/v2/filters/:filter_id/keywords

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
filter_id 4.0.0
Response Filter Keyword[]MastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0

POST /api/v2/filters/:filter_id/keywords

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
filter_id 4.0.0
keyword 4.0.0
whole_word 4.0.0
Response Filter KeywordMastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0

GET /api/v2/filters/keywords/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response Filter KeywordMastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0

PUT /api/v2/filters/keywords/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0
Response Filter KeywordMastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0

DELETE /api/v2/filters/keywords/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0

GET /api/v2/filters/:filter_id/statuses

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
filter_id 4.0.0
status_id 4.0.0
Response Filter Status[]MastodonGoToSocial
id 4.0.0
status_id 4.0.0

GET /api/v2/filters/statuses/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response Filter StatusMastodonGoToSocial
id 4.0.0
status_id 4.0.0

DELETE /api/v2/filters/statuses/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response Filter StatusMastodonGoToSocial
id 4.0.0
status_id 4.0.0

GET /api/v1/filters

SoftwareVersion
Mastodon 2.4.3
GoToSocial
Response V1 Filter[]MastodonGoToSocial
context 2.4.3
expires_at 2.4.3
id 2.4.3
irreversible 2.4.3
whole_word 2.4.3

GET /api/v1/filters/:id

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
id 2.4.3
Response V1 FilterMastodonGoToSocial
context 2.4.3
expires_at 2.4.3
id 2.4.3
irreversible 2.4.3
whole_word 2.4.3

POST /api/v1/filters

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
context[] Filter Context2.4.3
expires_in 2.4.3
irreversible 2.4.3
phrase 2.4.3
whole_word 2.4.3
Response V1 FilterMastodonGoToSocial
context 2.4.3
expires_at 2.4.3
id 2.4.3
irreversible 2.4.3
whole_word 2.4.3

PUT /api/v1/filters/:id

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
context[] Filter Context2.4.3
expires_in 2.4.3
id 2.4.3
irreversible 2.4.3
phrase 2.4.3
whole_word 2.4.3
Response V1 FilterMastodonGoToSocial
context 2.4.3
expires_at 2.4.3
id 2.4.3
irreversible 2.4.3
whole_word 2.4.3

DELETE /api/v1/filters/:id

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
id 2.4.3

Follow_requests

GET /api/v1/follow_requests

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

POST /api/v1/follow_requests/:account_id/authorize

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
account_id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

POST /api/v1/follow_requests/:account_id/reject

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
account_id 0.0.0
Response RelationshipMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

Followed_tags

GET /api/v1/followed_tags

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 4.0.0
Response Tag[]MastodonGoToSocial
name 0.9.0
url 0.9.0

Mutes

GET /api/v1/mutes

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
Response Muted Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
mute_expires_at 3.3.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Preferences

GET /api/v1/preferences

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ResponseMastodonGoToSocial
posting:default:language 2.8.0
posting:default:sensitive 2.8.0
posting:default:visibility 2.8.0
reading:expand:media 2.8.0
reading:expand:spoilers 2.8.0

Reports

POST /api/v1/reports

SoftwareVersion
Mastodon 1.1.0
GoToSocial
ParametersMastodonGoToSocial
account_id 1.1.0
category Report Category3.5.0
comment 1.1.0
forward 2.3.0
rule_ids[] 3.5.0
status_ids[] 1.1.0
Response ReportMastodonGoToSocial
action_taken 1.1.0
action_taken_at 4.0.0
category Report Category4.0.0
comment 4.0.0
created_at 4.0.0
forwarded 4.0.0
id 1.1.0
rule_ids 4.0.0
status_ids 4.0.0
target_account Account4.0.0

Suggestions

GET /api/v2/suggestions

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ParametersMastodonGoToSocial
limit 3.4.0
Response Suggestion[]MastodonGoToSocial
account Account3.4.0
source V2 Suggestion Source3.4.0
sources[] V2.1 Suggestion Source4.3.0

DELETE /api/v1/suggestions/:account_id

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
account_id 2.4.3

GET /api/v1/suggestions

SoftwareVersion
Mastodon 2.4.3
GoToSocial
ParametersMastodonGoToSocial
limit 2.4.3
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Tags

GET /api/v1/tags/:id

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response TagMastodonGoToSocial
name 0.9.0
url 0.9.0

POST /api/v1/tags/:id/follow

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
Response TagMastodonGoToSocial
name 0.9.0
url 0.9.0

POST /api/v1/tags/:id/unfollow

SoftwareVersion
Mastodon 4.0.0
GoToSocial
Response TagMastodonGoToSocial
name 0.9.0
url 0.9.0

Apps

POST /api/v1/apps

SoftwareVersion
Mastodon 0.0.0
GoToSocial 0.1.0
ParametersMastodonGoToSocial
client_name 0.0.00.1.0
redirect_uri 0.0.0
redirect_uris 4.3.00.1.0
scopes 0.0.00.1.0
vapid_keys 2.7.2
website 0.0.00.1.0
Response Credential ApplicationMastodonGoToSocial
client_id 0.9.9
client_secret 0.9.9
client_secret_expires_at 4.3.0
name 2.0.00.1.0
redirect_uris 4.3.0
scopes 4.3.0
vapid_keys 2.7.2
website 2.0.00.1.0

GET /api/v1/apps/verify_credentials

SoftwareVersion
Mastodon 2.0.0
GoToSocial
Response ApplicationMastodonGoToSocial
name 2.0.00.1.0
redirect_uris 4.3.0
scopes 4.3.0
vapid_keys 2.7.2
website 2.0.00.1.0

Emails

POST /api/v1/emails/confirmations

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ParametersMastodonGoToSocial
email 3.4.0

Oauth

GET /oauth/authorize

SoftwareVersion
Mastodon 0.1.0
GoToSocial
ParametersMastodonGoToSocial
client_id 0.1.0
code_challenge 4.3.0
code_challenge_method 4.3.0
force_login 2.6.0
lang 3.5.0
redirect_uri 0.1.0
response_type 0.1.0
scope Oauth Scope0.1.0
state 0.1.0
ResponseMastodonGoToSocial
code 0.1.0
state 0.1.0

POST /oauth/token

SoftwareVersion
Mastodon 0.1.0
GoToSocial
ParametersMastodonGoToSocial
client_id 0.1.0
client_secret 0.1.0
code 0.1.0
code_verifier 4.3.0
grant_type 0.1.0
redirect_uri 0.1.0
scope Oauth Scope0.1.0
Response TokenMastodonGoToSocial
access_token 0.1.0
created_at 0.1.0
scope Oauth Scope0.1.0
token_type 0.1.0

POST /oauth/revoke

SoftwareVersion
Mastodon 0.1.0
GoToSocial
ParametersMastodonGoToSocial
client_id 0.1.0
client_secret 0.1.0
token 0.1.0

GET /.well-known/oauth-authorization-server

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ResponseMastodonGoToSocial
app_registration_endpoint 4.3.0
authorization_endpoint 4.3.0
code_challenge_methods_supported[] 4.3.0
grant_types_supported[] 4.3.0
issuer 4.3.0
response_modes_supported[] 4.3.0
response_types_supported[] 4.3.0
revocation_endpoint 4.3.0
scopes_supported[] Oauth Scope4.3.0
service_documentation 4.3.0
token_endpoint 4.3.0
token_endpoint_auth_methods_supported[] 4.3.0

Notifications

GET /api/v1/notifications

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
account_id 2.9.0
exclude_types[] Notification0.0.0
include_filtered 4.3.0
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
since_id 0.0.0
types[] Notification3.5.0

GET /api/v1/notifications/:id

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response NotificationMastodonGoToSocial
account Account0.9.9
created_at 0.9.9
group_key 4.3.0
id 0.9.9
moderation_warning 4.3.0
relationship_severance_event 4.3.0
report 4.0.0
status 0.9.9
type Notification Type

POST /api/v1/notifications/clear

SoftwareVersion
Mastodon 0.0.0
GoToSocial

POST /api/v1/notifications/:id/dismiss

SoftwareVersion
Mastodon 1.3.0
GoToSocial
ParametersMastodonGoToSocial
id 1.3.0

POST /api/v1/notifications/dismiss

SoftwareVersion
Mastodon 0.0.0
GoToSocial

GET /api/v1/notifications/unread_count

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
account_id 4.3.0
exclude_types[] Notification Type4.3.0
limit 4.3.0
types[] Notification Type4.3.0
ResponseMastodonGoToSocial
count 4.3.0

GET api/v2/notifications/policy

SoftwareVersion
Mastodon 4.3.0
GoToSocial
Response Notification PolicyMastodonGoToSocial
for_limited_accounts 4.3.0
for_not_followers 4.3.0
for_not_following 4.3.0
for_private_mentions 4.3.0
summary 4.3.0
summary[pending_notifications_count] 4.3.0
summary[pending_requests_count] 4.3.0

PATCH /api/v2/notifications/policy

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
for_limited_accounts 4.3.0
for_not_followers 4.3.0
for_not_following 4.3.0
for_private_mentions 4.3.0
Response Notification PolicyMastodonGoToSocial
for_limited_accounts 4.3.0
for_not_followers 4.3.0
for_not_following 4.3.0
for_private_mentions 4.3.0
summary 4.3.0
summary[pending_notifications_count] 4.3.0
summary[pending_requests_count] 4.3.0

GET /api/v1/notifications/requests

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
limit 4.3.0
max_id 4.3.0
min_id 4.3.0
since_id 4.3.0
Response Notification Request[]MastodonGoToSocial
account Account4.3.0
id 4.3.0
last_status 4.3.0
notifications_count 4.3.0
updated_at 4.3.0

GET /api/v1/notifications/requests/:id

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id 4.3.0
Response Notification RequestMastodonGoToSocial
account Account4.3.0
id 4.3.0
last_status 4.3.0
notifications_count 4.3.0
updated_at 4.3.0

POST /api/v1/notifications/requests/:id/accept

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id 4.3.0

POST /api/v1/notifications/requests/:id/dismiss

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id 4.3.0

POST /api/v1/notifications/requests/accept

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id[] 4.3.0

POST /api/v1/notifications/requests/dismiss

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id[] 4.3.0

GET /api/v1/notifications/requests/merged

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ResponseMastodonGoToSocial
merged 4.3.0

Grouped

GET /api/v2/notifications

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
account_id 4.3.0
exclude_types[] Notification Type4.3.0
grouped_types[] Notification Group Type4.3.0
include_filtered 4.3.0
limit 4.3.0
max_id 4.3.0
min_id 4.3.0
since_id 4.3.0
types[] Notification Type4.3.0
Response Grouped Notifications ResultsMastodonGoToSocial
accounts[] Account4.3.0
notification_groups[] Notification Group4.3.0
partial_accounts[] Partial Account With Avatar4.3.0
statuses[] Status4.3.0

GET /api/v2/notifications/:group_key

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
group_key 4.3.0
Response Grouped Notifications ResultsMastodonGoToSocial
accounts[] Account4.3.0
notification_groups[] Notification Group4.3.0
partial_accounts[] Partial Account With Avatar4.3.0
statuses[] Status4.3.0

POST /api/v2/notifications/:group_key/dismiss

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
group_key 4.3.0

GET /api/v2/notifications/:group_key/accounts

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
group_key 4.3.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v2/notifications/unread_count

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
account_id 4.3.0
exclude_types[] Notification Type4.3.0
grouped_types[] Notification Group Type4.3.0
limit 4.3.0
types[] Notification Type4.3.0
ResponseMastodonGoToSocial
count 4.3.0

Push

POST /api/v1/push/subscription

SoftwareVersion
Mastodon 2.4.0
GoToSocial
ParametersMastodonGoToSocial
data[alerts][admin.report] 4.0.0
data[alerts][admin.sign_up] 3.5.0
data[alerts][favourite] 2.4.0
data[alerts][follow] 2.4.0
data[alerts][follow_request] 3.1.0
data[alerts][mention] 2.4.0
data[alerts][poll] 2.8.0
data[alerts][reblog] 2.4.0
data[alerts][status] 3.3.0
data[alerts][update] 3.5.0
data[policy] Push Policy3.5.0
subscription[endpoint] 2.4.0
subscription[keys][auth] 2.4.0
subscription[keys][p256dh] 2.4.0
Response Web Push SubscriptionMastodonGoToSocial
alerts[admin.report] 4.0.0
alerts[admin.sign_up] 3.5.0
alerts[favourite] 2.4.0
alerts[follow] 2.4.0
alerts[follow_request] 3.1.0
alerts[mention] 2.4.0
alerts[poll] 2.8.0
alerts[reblog] 2.4.0
alerts[status] 3.3.0
alerts[update] 3.5.0
endpoint 2.4.0
id 2.4.0
server_key 2.4.0

GET /api/v1/push/subscription

SoftwareVersion
Mastodon 2.4.0
GoToSocial
Response Web Push SubscriptionMastodonGoToSocial
alerts[admin.report] 4.0.0
alerts[admin.sign_up] 3.5.0
alerts[favourite] 2.4.0
alerts[follow] 2.4.0
alerts[follow_request] 3.1.0
alerts[mention] 2.4.0
alerts[poll] 2.8.0
alerts[reblog] 2.4.0
alerts[status] 3.3.0
alerts[update] 3.5.0
endpoint 2.4.0
id 2.4.0
server_key 2.4.0

PUT /api/v1/push/subscription

SoftwareVersion
Mastodon 2.4.0
GoToSocial
ParametersMastodonGoToSocial
data[alerts][admin.report] 4.0.0
data[alerts][admin.sign_up] 3.5.0
data[alerts][favourite] 2.4.0
data[alerts][follow] 2.4.0
data[alerts][follow_request] 3.1.0
data[alerts][mention] 2.4.0
data[alerts][poll] 2.8.0
data[alerts][reblog] 2.4.0
data[alerts][status] 3.3.0
data[alerts][update] 3.5.0
data[policy] Push Policy3.5.0
Response Web Push SubscriptionMastodonGoToSocial
alerts[admin.report] 4.0.0
alerts[admin.sign_up] 3.5.0
alerts[favourite] 2.4.0
alerts[follow] 2.4.0
alerts[follow_request] 3.1.0
alerts[mention] 2.4.0
alerts[poll] 2.8.0
alerts[reblog] 2.4.0
alerts[status] 3.3.0
alerts[update] 3.5.0
endpoint 2.4.0
id 2.4.0
server_key 2.4.0

DELETE /api/v1/push/subscription

SoftwareVersion
Mastodon 2.4.0
GoToSocial

Profile

DELETE /api/v1/profile/avatar

SoftwareVersion
Mastodon 4.2.0
GoToSocial
Response Credential AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
role Role4.0.0
source 2.4.0
source[fields] Field2.4.0
source[follow_requests_count] 3.0.0
source[language] 2.4.2
source[note] 1.5.0
source[privacy] Visibility1.5.0
source[sensitive] 1.5.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

DELETE /api/v1/profile/header

SoftwareVersion
Mastodon 4.2.0
GoToSocial
Response Credential AccountMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
role Role4.0.0
source 2.4.0
source[fields] Field2.4.0
source[follow_requests_count] 3.0.0
source[language] 2.4.2
source[note] 1.5.0
source[privacy] Visibility1.5.0
source[sensitive] 1.5.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Search

GET /api/v2/search

SoftwareVersion
Mastodon 2.4.1
GoToSocial
ParametersMastodonGoToSocial
account_id 2.4.1
exclude_unreviewed 3.0.0
following 2.4.1
limit 2.8.0
max_id 2.8.0
min_id 2.8.0
offset 2.8.0
q Search Query2.4.1
resolve 2.4.1
type Search Type2.8.0
Response SearchMastodonGoToSocial
accounts[] Account2.4.1
hashtags[] Tag2.4.1
statuses[] Status2.4.1

GET /api/v1/search

SoftwareVersion
Mastodon 1.1.0
GoToSocial
ParametersMastodonGoToSocial
account_id 2.8.0
limit 2.8.0
max_id 2.8.0
min_id 2.8.0
offset 2.8.0
q 1.1.0
resolve 1.1.0
type Search Type2.8.0
Response V1 SearchMastodonGoToSocial
accounts[] Account1.1.0
hashtags[] 1.1.0
statuses[] Status1.1.0

Statuses

POST /api/v1/statuses

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
Idempotency-Key 0.0.0
in_reply_to_id 0.0.0
language 1.4.0
media_ids[] 0.0.0
poll[expires_in] 2.8.0
poll[hide_totals] 2.8.0
poll[multiple] 2.8.0
poll[options][] 2.8.0
sensitive 0.9.9
spoiler_text 1.0.0
status 0.0.0
visibility Visibility0.9.9
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses (Scheduled)

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
Idempotency-Key 2.7.0
in_reply_to_id 2.7.0
language 2.7.0
media_ids[] 2.7.0
poll[expires_in] 2.8.0
poll[hide_totals] 2.8.0
poll[multiple] 2.8.0
poll[options][] 2.8.0
scheduled_at 2.7.0
sensitive 2.7.0
spoiler_text 2.7.0
status 2.7.0
visibility Visibility2.7.0
Response Scheduled StatusMastodonGoToSocial
id 2.7.0
media_attachments[] Media Attachment2.7.0
params[application_id] 2.7.0
params[idempotency] 2.7.0
params[in_reply_to_id] 2.7.0
params[language] 2.7.0
params[media_ids] 2.7.0
params[poll] 2.8.0
params[poll][expires_in] 2.8.0
params[poll][hide_totals] 2.8.0
params[poll][multiple] 2.8.0
params[poll][options[]] 2.8.0
params[scheduled_at] 2.7.0
params[sensitive] 2.7.0
params[spoiler_text] 2.7.0
params[test] 2.7.0
params[visibility] Visibility2.7.0
params[with_rate_limit] 2.7.0
scheduled_at 2.7.0

GET /api/v1/statuses/:id

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/statuses

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
id[] 4.3.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

DELETE /api/v1/statuses/:id

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response Deleted StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
text 2.9.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/statuses/:id/context

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response ContextMastodonGoToSocial
ancestors[] Status0.6.0
descendants[] Status0.6.0

POST /api/v1/statuses/:id/translate

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ParametersMastodonGoToSocial
id 4.0.0
lang 4.0.0
Response TranslationMastodonGoToSocial
content 4.0.0
detected_source_language 4.0.0
media_attachments[] Translation Media Attachment4.2.0
poll Translation Poll4.2.0
provider 4.0.0
spoil_text 4.2.0

GET /api/v1/statuses/:id/reblogged_by

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
limit 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

GET /api/v1/statuses/:id/favourited_by

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
limit 0.0.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

POST /api/v1/statuses/:id/favourite

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/unfavourite

SoftwareVersion
Mastodon 0.0.0
GoToSocial
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/reblog

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
visibility Boost Visibility2.8.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/unreblog

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/bookmark

SoftwareVersion
Mastodon 3.1.0
GoToSocial
ParametersMastodonGoToSocial
id 3.1.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/unbookmark

SoftwareVersion
Mastodon 3.1.0
GoToSocial
ParametersMastodonGoToSocial
id 3.1.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/mute

SoftwareVersion
Mastodon 1.4.2
GoToSocial
ParametersMastodonGoToSocial
id 1.4.2
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/unmute

SoftwareVersion
Mastodon 1.4.2
GoToSocial
ParametersMastodonGoToSocial
id 1.4.2
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/pin

SoftwareVersion
Mastodon 1.6.0
GoToSocial
ParametersMastodonGoToSocial
id 1.6.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

POST /api/v1/statuses/:id/unpin

SoftwareVersion
Mastodon 1.6.0
GoToSocial
ParametersMastodonGoToSocial
id 1.6.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

PUT /api/v1/statuses/:id

SoftwareVersion
Mastodon 3.5.0
GoToSocial
ParametersMastodonGoToSocial
id 3.5.0
language 4.0.0
media_attributes[][] 3.5.0
media_ids[] 3.5.0
poll[expires_in] 3.5.0
poll[hide_totals] 3.5.0
poll[multiple] 3.5.0
poll[options][] 3.5.0
sensitive 3.5.0
spoiler_text 3.5.0
status 3.5.0
Response StatusMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/statuses/:id/history

SoftwareVersion
Mastodon 3.5.0
GoToSocial
ParametersMastodonGoToSocial
id 3.5.0
Response Status Edit[]MastodonGoToSocial
account Account3.5.0
content 3.5.0
created_at 3.5.0
emojis[] Custom Emoji3.5.0
media_attachments[] Media Attachment3.5.0
poll[options][][title] 3.5.0
sensitive 3.5.0
spoiler_text 3.5.0

GET /api/v1/statuses/:id/source

SoftwareVersion
Mastodon 3.5.0
GoToSocial
ParametersMastodonGoToSocial
id 3.5.0
Response Status SourceMastodonGoToSocial
id 3.5.0
spoiler_text 3.5.0
text 3.5.0

GET /api/v1/statuses/:id/card

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
id 0.0.0
Response Preview CardMastodonGoToSocial
author_name 1.3.0
author_url 1.3.0
authors[] Preview Card Author4.3.0
blurhash 3.2.0
description 1.0.0
embed_url 2.1.0
height 1.3.0
html 1.3.0
image 1.0.0
provider_name 1.3.0
provider_url 1.3.0
title 1.0.0
type Preview Card Type1.3.0
url 1.0.0
width 1.3.0

Media

POST /api/v2/media

SoftwareVersion
Mastodon 3.1.3
GoToSocial
ParametersMastodonGoToSocial
description 3.1.3
file 3.1.3
focus 3.1.3
thumbnail 3.2.0
Response Media AttachmentMastodonGoToSocial
blurhash 2.8.1
description 2.0.0
id 0.6.0
meta[focus][x] 2.3.0
meta[focus][y] 2.3.0
meta[original] Media Meta Info0.6.0
meta[small] Media Meta Info0.6.0
preview_url 0.6.0
remote_url 0.6.0
text_url 0.6.0
type Media Type0.6.0
url 0.6.0

GET /api/v1/media/:id

SoftwareVersion
Mastodon 3.1.3
GoToSocial
ParametersMastodonGoToSocial
id 3.1.3
Response Media AttachmentMastodonGoToSocial
blurhash 2.8.1
description 2.0.0
id 0.6.0
meta[focus][x] 2.3.0
meta[focus][y] 2.3.0
meta[original] Media Meta Info0.6.0
meta[small] Media Meta Info0.6.0
preview_url 0.6.0
remote_url 0.6.0
text_url 0.6.0
type Media Type0.6.0
url 0.6.0

PUT /api/v1/media/:id

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
description 0.0.0
focus 2.3.0
id 0.0.0
thumbnail 3.2.0
Response Media AttachmentMastodonGoToSocial
blurhash 2.8.1
description 2.0.0
id 0.6.0
meta[focus][x] 2.3.0
meta[focus][y] 2.3.0
meta[original] Media Meta Info0.6.0
meta[small] Media Meta Info0.6.0
preview_url 0.6.0
remote_url 0.6.0
text_url 0.6.0
type Media Type0.6.0
url 0.6.0

POST /api/v1/media

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
description 0.0.0
file 0.0.0
focus 2.3.0
thumbnail 3.2.0
Response Media AttachmentMastodonGoToSocial
blurhash 2.8.1
description 2.0.0
id 0.6.0
meta[focus][x] 2.3.0
meta[focus][y] 2.3.0
meta[original] Media Meta Info0.6.0
meta[small] Media Meta Info0.6.0
preview_url 0.6.0
remote_url 0.6.0
text_url 0.6.0
type Media Type0.6.0
url 0.6.0

Polls

GET /api/v1/polls/:id

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ParametersMastodonGoToSocial
id 2.8.0
Response PollMastodonGoToSocial
emojis[] Custom Emoji2.8.0
expired 2.8.0
expires_at 2.8.0
id 2.8.0
multiple 2.8.0
options[] Poll Option2.8.0
own_votes 2.8.0
voted 2.8.0
voters_count 2.8.0
votes_count 2.8.0

POST /api/v1/polls/:id/votes

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ParametersMastodonGoToSocial
choices[] 2.8.0
id 2.8.0
Response PollMastodonGoToSocial
emojis[] Custom Emoji2.8.0
expired 2.8.0
expires_at 2.8.0
id 2.8.0
multiple 2.8.0
options[] Poll Option2.8.0
own_votes 2.8.0
voted 2.8.0
voters_count 2.8.0
votes_count 2.8.0

Scheduled_statuses

GET /api/v1/scheduled_statuses

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
limit 2.7.0
max_id 2.7.0
min_id 2.7.0
since_id 2.7.0
Response Scheduled Status[]MastodonGoToSocial
id 2.7.0
media_attachments[] Media Attachment2.7.0
params[application_id] 2.7.0
params[idempotency] 2.7.0
params[in_reply_to_id] 2.7.0
params[language] 2.7.0
params[media_ids] 2.7.0
params[poll] 2.8.0
params[poll][expires_in] 2.8.0
params[poll][hide_totals] 2.8.0
params[poll][multiple] 2.8.0
params[poll][options[]] 2.8.0
params[scheduled_at] 2.7.0
params[sensitive] 2.7.0
params[spoiler_text] 2.7.0
params[test] 2.7.0
params[visibility] Visibility2.7.0
params[with_rate_limit] 2.7.0
scheduled_at 2.7.0

GET /api/v1/scheduled_statuses/:id

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
id 2.7.0
Response Scheduled StatusMastodonGoToSocial
id 2.7.0
media_attachments[] Media Attachment2.7.0
params[application_id] 2.7.0
params[idempotency] 2.7.0
params[in_reply_to_id] 2.7.0
params[language] 2.7.0
params[media_ids] 2.7.0
params[poll] 2.8.0
params[poll][expires_in] 2.8.0
params[poll][hide_totals] 2.8.0
params[poll][multiple] 2.8.0
params[poll][options[]] 2.8.0
params[scheduled_at] 2.7.0
params[sensitive] 2.7.0
params[spoiler_text] 2.7.0
params[test] 2.7.0
params[visibility] Visibility2.7.0
params[with_rate_limit] 2.7.0
scheduled_at 2.7.0

PUT /api/v1/scheduled_statuses/:id

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
id 2.7.0
scheduled_at 2.7.0
Response Scheduled StatusMastodonGoToSocial
id 2.7.0
media_attachments[] Media Attachment2.7.0
params[application_id] 2.7.0
params[idempotency] 2.7.0
params[in_reply_to_id] 2.7.0
params[language] 2.7.0
params[media_ids] 2.7.0
params[poll] 2.8.0
params[poll][expires_in] 2.8.0
params[poll][hide_totals] 2.8.0
params[poll][multiple] 2.8.0
params[poll][options[]] 2.8.0
params[scheduled_at] 2.7.0
params[sensitive] 2.7.0
params[spoiler_text] 2.7.0
params[test] 2.7.0
params[visibility] Visibility2.7.0
params[with_rate_limit] 2.7.0
scheduled_at 2.7.0

DELETE /api/v1/scheduled_statuses/:id

SoftwareVersion
Mastodon 2.7.0
GoToSocial
ParametersMastodonGoToSocial
id 2.7.0

Timelines

GET /api/v1/timelines/public

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
local 0.0.0
max_id 0.0.0
min_id 2.6.0
only_media 2.3.0
remote 3.1.4
since_id 0.0.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/timelines/tag/:hashtag

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
all[] 2.7.0
any[] 2.7.0
hashtag 0.0.0
limit 0.0.0
local 0.0.0
max_id 0.0.0
min_id 2.6.0
none[] 2.7.0
only_media 2.3.0
remote 3.3.0
since_id 0.0.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/timelines/home

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
since_id 0.0.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9
SoftwareVersion
Mastodon 4.3.0
GoToSocial
ParametersMastodonGoToSocial
limit 4.3.0
max_id 4.3.0
min_id 4.3.0
since_id 4.3.0
url 4.3.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/timelines/list/:list_id

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
limit 2.1.0
list_id 2.1.0
max_id 2.1.0
min_id 2.6.0
since_id 2.1.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

GET /api/v1/timelines/direct

SoftwareVersion
Mastodon 0.0.0
GoToSocial
ParametersMastodonGoToSocial
limit 0.0.0
max_id 0.0.0
min_id 2.6.0
since_id 0.0.0
Response Status[]MastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

Conversations

GET /api/v1/conversations

SoftwareVersion
Mastodon 2.6.0
GoToSocial
ParametersMastodonGoToSocial
limit 2.6.0
max_id 2.1.0
min_id 2.6.0
since_id 2.6.0
Response Conversation[]MastodonGoToSocial
accounts[] Account2.6.0
id 2.6.0
last_status Status2.6.0
unread 2.6.0

DELETE /api/v1/conversations/:id

SoftwareVersion
Mastodon 2.6.0
GoToSocial
ParametersMastodonGoToSocial
id 2.6.0

POST /api/v1/conversations/:id/read

SoftwareVersion
Mastodon 2.6.0
GoToSocial
ParametersMastodonGoToSocial
id 2.6.0
Response ConversationMastodonGoToSocial
accounts[] Account2.6.0
id 2.6.0
last_status Status2.6.0
unread 2.6.0

Lists

GET /api/v1/lists

SoftwareVersion
Mastodon 2.1.0
GoToSocial
Response List[]MastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

GET /api/v1/lists/:id

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
id 2.1.0
Response ListMastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

POST /api/v1/lists

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
exclusive 4.2.0
replies_policy Replies Policy3.3.0
title 2.1.0
Response ListMastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

PUT /api/v1/lists/:id

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
exclusive 4.2.0
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0
Response ListMastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

DELETE /api/v1/lists/:id

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
id 2.1.0

GET /api/v1/lists/:id/accounts

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
id 2.1.0
limit 2.1.0
Response Account[]MastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

POST /api/v1/lists/:id/accounts

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
account_ids[] 2.1.0
id 2.1.0

DELETE /api/v1/lists/:id/accounts

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
account_ids[] 2.1.0
id 2.1.0

Markers

GET /api/v1/markers

SoftwareVersion
Mastodon 3.0.0
GoToSocial
ParametersMastodonGoToSocial
timeline[] Timeline Key3.0.0
ResponseMastodonGoToSocial
home Marker3.0.0
notifications Marker3.0.0

POST /api/v1/markers

SoftwareVersion
Mastodon 3.0.0
GoToSocial
ParametersMastodonGoToSocial
home[last_read_id] 3.0.0
notifications[last_read_id] 3.0.0
Response MarkerMastodonGoToSocial
last_read_id 3.0.0
updated_at 3.0.0
version 3.0.0

Streaming

GET /api/v1/streaming/health

SoftwareVersion
Mastodon 2.5.0
GoToSocial

GET /api/v1/streaming/user

SoftwareVersion
Mastodon 1.0.0
GoToSocial
ResponseMastodonGoToSocial
data 1.0.0
event Streaming User Event1.0.0

GET /api/v1/streaming/user/notification

SoftwareVersion
Mastodon 1.4.2
GoToSocial
ResponseMastodonGoToSocial
data 1.4.2
event Streaming Notification Event1.4.2

GET /api/v1/streaming/public

SoftwareVersion
Mastodon 1.0.0
GoToSocial
ParametersMastodonGoToSocial
only_media 2.4.0
ResponseMastodonGoToSocial
data 1.0.0
event Streaming Timeline Event1.0.0

GET /api/v1/streaming/public/local

SoftwareVersion
Mastodon 1.1.0
GoToSocial
ParametersMastodonGoToSocial
only_media 2.4.0
ResponseMastodonGoToSocial
data 1.1.0
event Streaming Timeline Event1.1.0

GET /api/v1/streaming/public/remote

SoftwareVersion
Mastodon 3.1.4
GoToSocial
ParametersMastodonGoToSocial
only_media 2.4.0
ResponseMastodonGoToSocial
data 3.1.4
event Streaming Timeline Event3.1.4

GET /api/v1/streaming/hashtag

SoftwareVersion
Mastodon 1.0.0
GoToSocial
ParametersMastodonGoToSocial
tag 1.0.0
ResponseMastodonGoToSocial
data 1.0.0
event Streaming Timeline Event1.0.0

GET /api/v1/streaming/hashtag/local

SoftwareVersion
Mastodon 1.1.0
GoToSocial
ParametersMastodonGoToSocial
tag 1.1.0
ResponseMastodonGoToSocial
data 1.1.0
event Streaming Timeline Event1.1.0

GET /api/v1/streaming/list

SoftwareVersion
Mastodon 2.1.0
GoToSocial
ParametersMastodonGoToSocial
list 2.1.0
ResponseMastodonGoToSocial
data 2.1.0
event Streaming Timeline Event2.1.0

GET /api/v1/streaming/direct

SoftwareVersion
Mastodon 2.4.0
GoToSocial
ResponseMastodonGoToSocial
data 2.4.0
event Streaming Direct Event2.4.0

wss://mastodon.example/api/v1/streaming

SoftwareVersion
Mastodon 3.3.0
GoToSocial
ParametersMastodonGoToSocial
access_token 3.3.0
list 3.3.0
stream Streaming Category3.3.0
tag 3.3.0
type 3.3.0

Account

SoftwareVersion
Mastodon 0.0.0
GoToSocial
AttributesMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Account Error

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ValuesMastodonGoToSocial
ERR_ACCEPTED 3.4.0
ERR_BLANK 3.4.0
ERR_BLOCKED 3.4.0
ERR_INCLUSION 3.4.0
ERR_INVALID 3.4.0
ERR_RESERVED 3.4.0
ERR_TAKEN 3.4.0
ERR_TOO_LONG 3.4.0
ERR_TOO_SHORT 3.4.0
ERR_UNREACHABLE 3.4.0

Account Warning

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
appeal Appeal4.3.0
created_at 4.3.0
id 4.3.0
status_ids[] 4.3.0
target_account Account4.3.0
text 4.3.0

Account Warning Action

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
delete_statuses 4.3.0
disable 4.3.0
mark_statuses_as_sensitive 4.3.0
none 4.3.0
sensitive 4.3.0
silence 4.3.0
suspend 4.3.0

Appeal

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
state Appeal State4.3.0
text 4.3.0

Appeal State

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
approved 4.3.0
pending 4.3.0
rejected 4.3.0

Application

SoftwareVersion
Mastodon 0.0.0
GoToSocial 0.1.0
AttributesMastodonGoToSocial
name 2.0.00.1.0
redirect_uris 4.3.0
scopes 4.3.0
vapid_keys 2.7.2
website 2.0.00.1.0

Boost Visibility

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ValuesMastodonGoToSocial
private 2.8.0
public 2.8.0
unlisted 2.8.0

Context

SoftwareVersion
Mastodon 0.6.0
GoToSocial
AttributesMastodonGoToSocial
ancestors[] Status0.6.0
descendants[] Status0.6.0

Conversation

SoftwareVersion
Mastodon 2.6.0
GoToSocial
AttributesMastodonGoToSocial
accounts[] Account2.6.0
id 2.6.0
last_status Status2.6.0
unread 2.6.0

Credential Account

SoftwareVersion
Mastodon 1.5.0
GoToSocial
AttributesMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
noindex 4.0.0
note 0.1.0
role Role4.0.0
source 2.4.0
source[fields] Field2.4.0
source[follow_requests_count] 3.0.0
source[language] 2.4.2
source[note] 1.5.0
source[privacy] Visibility1.5.0
source[sensitive] 1.5.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Credential Application

SoftwareVersion
Mastodon 0.9.9
GoToSocial
AttributesMastodonGoToSocial
client_id 0.9.9
client_secret 0.9.9
client_secret_expires_at 4.3.0
name 2.0.00.1.0
redirect_uris 4.3.0
scopes 4.3.0
vapid_keys 2.7.2
website 2.0.00.1.0

Custom Emoji

SoftwareVersion
Mastodon 2.0.0
GoToSocial
AttributesMastodonGoToSocial
category 3.0.0
shortcode 2.0.0
static_url 2.0.0
url 2.0.0
visible_in_picker 2.0.0

Deleted Status

SoftwareVersion
Mastodon 0.0.0
GoToSocial
AttributesMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
text 2.9.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

Familiar Followers

SoftwareVersion
Mastodon 3.5.0
GoToSocial
AttributesMastodonGoToSocial
accounts 3.5.0
id 3.5.0

Featured Tag

SoftwareVersion
Mastodon 3.0.0
GoToSocial
AttributesMastodonGoToSocial
id 3.0.0
last_status_at 3.0.0
name 3.0.0
status_count 3.0.0
url 3.3.0

Field

SoftwareVersion
Mastodon 2.4.0
GoToSocial
AttributesMastodonGoToSocial
name 2.4.0
value 2.4.0
verified_at 2.6.0

Filter

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
context Filter Context4.0.0
expires_at 4.0.0
filter_action Filter Action4.0.0
id 4.0.0
keywords[] Filter Keyword4.0.0
statuses[] Filter Status4.0.0
title 4.0.0

Filter Action

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ValuesMastodonGoToSocial
hide 4.0.0
warn 4.0.0

Filter Context

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ValuesMastodonGoToSocial
account 4.0.0
home 4.0.0
notifications 4.0.0
public 4.0.0
thread 4.0.0

Filter Keyword

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
id 4.0.0
keyword 4.0.0
whole_word 4.0.0

Filter Result

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
filter Filter4.0.0
keyword_matches[] 4.0.0
status_matches[] 4.0.0

Filter Status

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
id 4.0.0
status_id 4.0.0

Grouped Notifications Results

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
accounts[] Account4.3.0
notification_groups[] Notification Group4.3.0
partial_accounts[] Partial Account With Avatar4.3.0
statuses[] Status4.3.0

List

SoftwareVersion
Mastodon 2.1.0
GoToSocial
AttributesMastodonGoToSocial
id 2.1.0
replies_policy Replies Policy3.3.0
title 2.1.0

Replies Policy

SoftwareVersion
Mastodon 3.3.0
GoToSocial
ValuesMastodonGoToSocial
followed 3.3.0
list 3.3.0
none 3.3.0

Marker

SoftwareVersion
Mastodon 3.0.0
GoToSocial
AttributesMastodonGoToSocial
last_read_id 3.0.0
updated_at 3.0.0
version 3.0.0

Media Attachment

SoftwareVersion
Mastodon 0.6.0
GoToSocial
AttributesMastodonGoToSocial
blurhash 2.8.1
description 2.0.0
id 0.6.0
meta[focus][x] 2.3.0
meta[focus][y] 2.3.0
meta[original] Media Meta Info0.6.0
meta[small] Media Meta Info0.6.0
preview_url 0.6.0
remote_url 0.6.0
text_url 0.6.0
type Media Type0.6.0
url 0.6.0

Media Meta Info

SoftwareVersion
Mastodon 0.6.0
GoToSocial
AttributesMastodonGoToSocial
aspect 0.6.0
height 0.6.0
width 0.6.0

Media Type

SoftwareVersion
Mastodon 0.6.0
GoToSocial
ValuesMastodonGoToSocial
audio 2.9.1
gifv 0.6.0
image 0.6.0
unknown 0.6.0
video 0.6.0

Mention

SoftwareVersion
Mastodon 0.6.0
GoToSocial
AttributesMastodonGoToSocial
acct 0.6.0
id 0.6.0
url 0.6.0
username 0.6.0

Muted Account

SoftwareVersion
Mastodon 0.0.0
GoToSocial
AttributesMastodonGoToSocial
acct 0.1.0
avatar 0.1.0
avatar_static 1.1.2
bot 2.4.0
created_at 0.1.0
discoverable 3.1.0
display_name 0.1.0
emojis[] Custom Emoji2.4.0
fields[] Field2.4.0
followers_count 0.1.0
following_count 0.1.0
group 3.1.0
header 0.1.0
header_static 1.1.2
id 0.1.0
last_status_at 3.0.0
limited 3.5.3
locked 0.1.0
moved 2.1.0
mute_expires_at 3.3.0
noindex 4.0.0
note 0.1.0
statuses_count 0.1.0
suspended 3.3.0
url 0.1.0
username 0.1.0

Notification

SoftwareVersion
Mastodon 0.9.9
GoToSocial
AttributesMastodonGoToSocial
account Account0.9.9
created_at 0.9.9
group_key 4.3.0
id 0.9.9
moderation_warning 4.3.0
relationship_severance_event 4.3.0
report 4.0.0
status 0.9.9
type Notification Type

Notification Group

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
event Relationship Severance Event4.3.0
group_key 4.3.0
latest_page_notification_at 4.3.0
moderation_warning Account Warning4.3.0
most_recent_notification_id 4.3.0
notifications_count 4.3.0
page_max_id 4.3.0
page_min_id 4.3.0
report Report4.3.0
sample_account_ids[] 4.3.0
status_id 4.3.0
type Notification Type4.3.0

Notification Group Expand

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
full 4.3.0
partial_avatars 4.3.0

Notification Group Type

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
favourite 4.3.0
follow 4.3.0
reblog 4.3.0

Notification Policy

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
for_limited_accounts 4.3.0
for_not_followers 4.3.0
for_not_following 4.3.0
for_private_mentions 4.3.0
summary 4.3.0
summary[pending_notifications_count] 4.3.0
summary[pending_requests_count] 4.3.0

Notification Request

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
account Account4.3.0
id 4.3.0
last_status 4.3.0
notifications_count 4.3.0
updated_at 4.3.0

Notification Type

SoftwareVersion
Mastodon 0.9.9
GoToSocial
ValuesMastodonGoToSocial
admin.report 4.0.0
admin.sign_up 3.5.0
favourite 0.9.9
follow 0.9.9
follow_request 3.1.0
mention 0.9.9
moderation_warning 4.3.0
poll 2.8.0
rebog 0.9.9
severed_relationships 4.3.0
status 3.3.0
update 3.5.0

Oauth Scope

SoftwareVersion
Mastodon 0.1.0
GoToSocial
ValuesMastodonGoToSocial
admin:read 2.9.1
admin:read:accounts 2.9.1
admin:read:reports 2.9.1
admin:write 2.9.1
admin:write:accounts 2.9.1
admin:write:reports 2.9.1
crypto 3.2.0
follow 0.9.0
profile 4.3.0
push 2.4.0
read 0.9.0
read:accounts 2.4.3
read:blocks 2.4.3
read:bookmarks 3.1.0
read:favourites 2.4.3
read:filters 2.4.3
read:follows 2.4.3
read:lists 2.4.3
read:mutes 2.4.3
read:notifications 2.4.3
read:reports 2.4.3
read:search 2.4.3
read:statuses 2.4.3
write 0.9.0
write:accounts 2.4.3
write:blocks 2.4.3
write:bookmarks 3.1.0
write:conversations 2.6.0
write:favourites 2.4.3
write:filters 2.4.3
write:follows 2.4.3
write:lists 2.4.3
write:media 2.4.3
write:mutes 2.4.3
write:notifications 2.4.3
write:reports 2.4.3
write:statuses 2.4.3

Partial Account With Avatar

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
acct 4.3.0
avatar 4.3.0
avatar_static 4.3.0
bot 4.3.0
id 4.3.0
locked 4.3.0
url 4.3.0

Poll

SoftwareVersion
Mastodon 2.8.0
GoToSocial
AttributesMastodonGoToSocial
emojis[] Custom Emoji2.8.0
expired 2.8.0
expires_at 2.8.0
id 2.8.0
multiple 2.8.0
options[] Poll Option2.8.0
own_votes 2.8.0
voted 2.8.0
voters_count 2.8.0
votes_count 2.8.0

Poll Option

SoftwareVersion
Mastodon 2.8.0
GoToSocial
AttributesMastodonGoToSocial
title 2.8.0
votes_count 2.8.0

Preview Card

SoftwareVersion
Mastodon 1.0.0
GoToSocial
AttributesMastodonGoToSocial
author_name 1.3.0
author_url 1.3.0
authors[] Preview Card Author4.3.0
blurhash 3.2.0
description 1.0.0
embed_url 2.1.0
height 1.3.0
html 1.3.0
image 1.0.0
provider_name 1.3.0
provider_url 1.3.0
title 1.0.0
type Preview Card Type1.3.0
url 1.0.0
width 1.3.0

Preview Card Author

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
account 4.3.0
name 4.3.0
url 4.3.0

Preview Card Type

SoftwareVersion
Mastodon 1.3.0
GoToSocial
ValuesMastodonGoToSocial
link 1.3.0
photo 1.3.0
video 1.3.0

Push Policy

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ValuesMastodonGoToSocial
all 3.4.0
followed 3.4.0
follower 3.4.0
none 3.4.0

Relationship

SoftwareVersion
Mastodon 0.0.0
GoToSocial
AttributesMastodonGoToSocial
blocked_by 2.8.0
blocking 0.6.0
domain_blocking 1.4.0
endorsed 2.5.0
followed_by 0.6.0
following 0.6.0
id 0.6.0
language 4.0.0
muting 1.1.0
muting_notifications 2.1.0
note 3.2.0
notifying 3.3.0
requested 0.9.9
requested_by 4.1.0
show_reblogs 2.1.0

Relationship Severance Event

SoftwareVersion
Mastodon 4.3.0
GoToSocial
AttributesMastodonGoToSocial
created_at 4.3.0
id 4.3.0
purged 4.3.0
relationships_count 4.3.0
target_name 4.3.0
type Relationship Severance Type4.3.0

Relationship Severance Type

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
account_suspension 4.3.0
domain_block 4.3.0
user_domain_block 4.3.0

Replies Policy

SoftwareVersion
Mastodon 3.3.0
GoToSocial
ValuesMastodonGoToSocial
followed 3.3.0
list 3.3.0
none 3.3.0

Report

SoftwareVersion
Mastodon 1.1.0
GoToSocial
AttributesMastodonGoToSocial
action_taken 1.1.0
action_taken_at 4.0.0
category Report Category4.0.0
comment 4.0.0
created_at 4.0.0
forwarded 4.0.0
id 1.1.0
rule_ids 4.0.0
status_ids 4.0.0
target_account Account4.0.0

Report Category

SoftwareVersion
Mastodon 4.0.0
GoToSocial
ValuesMastodonGoToSocial
legal 4.2.0
other 4.0.0
spam 4.0.0
violation 4.0.0

Role

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
color 4.0.0
highlighted 4.0.0
id 4.0.0
name 4.0.0
permissions 4.0.0

Scheduled Status

SoftwareVersion
Mastodon 2.7.0
GoToSocial
AttributesMastodonGoToSocial
id 2.7.0
media_attachments[] Media Attachment2.7.0
params[application_id] 2.7.0
params[idempotency] 2.7.0
params[in_reply_to_id] 2.7.0
params[language] 2.7.0
params[media_ids] 2.7.0
params[poll] 2.8.0
params[poll][expires_in] 2.8.0
params[poll][hide_totals] 2.8.0
params[poll][multiple] 2.8.0
params[poll][options[]] 2.8.0
params[scheduled_at] 2.7.0
params[sensitive] 2.7.0
params[spoiler_text] 2.7.0
params[test] 2.7.0
params[visibility] Visibility2.7.0
params[with_rate_limit] 2.7.0
scheduled_at 2.7.0

Search

SoftwareVersion
Mastodon 2.4.1
GoToSocial
AttributesMastodonGoToSocial
accounts[] Account2.4.1
hashtags[] Tag2.4.1
statuses[] Status2.4.1

Search Query

SoftwareVersion
Mastodon 2.4.1
GoToSocial
ValuesMastodonGoToSocial
after:YYY-MM-DD 4.2.0
before:YYY-MM-DD 4.2.0
during:YYY-MM-DD 4.2.0
from:me 4.2.0
from:username@domain 3.5.0
has:embed 4.2.0
has:media 4.2.0
has:poll 4.2.0
in:all 4.2.0
in:library 4.2.0
in:public 4.2.0
language:en 4.2.0

Search Type

SoftwareVersion
Mastodon 2.8.0
GoToSocial
ValuesMastodonGoToSocial
accounts 2.8.0
hashtags 2.8.0
statuses 2.8.0

Status

SoftwareVersion
Mastodon 0.1.0
GoToSocial
AttributesMastodonGoToSocial
account 0.1.0
application 0.9.9
application[name] 0.9.9
application[website] 0.9.9
bookmarked 3.1.0
card Preview Card2.6.0
content 0.1.0
created_at 0.1.0
edited_at 3.5.0
emojis[] Custom Emoji2.0.0
favorited 0.1.0
favourites_count 0.1.0
filtered[] Filter Result4.0.0
id 0.1.0
in_reply_to_account_id 0.1.0
in_reply_to_id 0.1.0
language 1.4.0
media_attachments[] Media Attachment0.6.0
mentions[] Mention0.6.0
muted 1.4.0
pinned 1.6.0
poll Poll2.8.0
reblog 0.1.0
reblogs_count 0.1.0
rebogged 0.1.0
replies_count 2.5.0
sensitive 0.9.9
spoiler_text 1.0.0
tags[] Tag0.6.0
uri 0.1.0
url 0.1.0
visibility Visibility0.9.9

Status Edit

SoftwareVersion
Mastodon 3.5.0
GoToSocial
AttributesMastodonGoToSocial
account Account3.5.0
content 3.5.0
created_at 3.5.0
emojis[] Custom Emoji3.5.0
media_attachments[] Media Attachment3.5.0
poll[options][][title] 3.5.0
sensitive 3.5.0
spoiler_text 3.5.0

Status Source

SoftwareVersion
Mastodon 3.5.0
GoToSocial
AttributesMastodonGoToSocial
id 3.5.0
spoiler_text 3.5.0
text 3.5.0

Streaming Category

SoftwareVersion
Mastodon 3.3.0
GoToSocial
ValuesMastodonGoToSocial
direct 3.3.0
hashtag 3.3.0
hashtag:local 3.3.0
list 3.3.0
public 3.3.0
public:local 3.3.0
public:local:media 3.3.0
public:media 3.3.0
public:remote 3.3.0
public:remote:media 3.3.0
user 3.3.0
user:notification 3.3.0

Streaming Direct Event

SoftwareVersion
Mastodon 2.4.0
GoToSocial
ValuesMastodonGoToSocial
conversation 2.6.0
update 2.4.0

Streaming Notification Event

SoftwareVersion
Mastodon 1.4.2
GoToSocial
ValuesMastodonGoToSocial
notification 1.4.2

Streaming Timeline Event

SoftwareVersion
Mastodon 1.0.0
GoToSocial
ValuesMastodonGoToSocial
delete 1.0.0
status.update 3.5.0
update 1.0.0

Streaming User Event

SoftwareVersion
Mastodon 1.0.0
GoToSocial
ValuesMastodonGoToSocial
announcement 3.1.0
announcement.delete 3.1.0
announcement.reaction 3.1.0
delete 1.0.0
filters_changed 2.4.3
notification 1.4.2
status.update 3.5.0
update 1.0.0

Suggestion

SoftwareVersion
Mastodon 3.4.0
GoToSocial
AttributesMastodonGoToSocial
account Account3.4.0
source V2 Suggestion Source3.4.0
sources[] V2.1 Suggestion Source4.3.0

Tag

SoftwareVersion
Mastodon 0.9.0
GoToSocial
AttributesMastodonGoToSocial
name 0.9.0
url 0.9.0

Timeline Key

SoftwareVersion
Mastodon 3.0.0
GoToSocial
ValuesMastodonGoToSocial
home 3.0.0
notifications 3.0.0

Token

SoftwareVersion
Mastodon 0.1.0
GoToSocial
AttributesMastodonGoToSocial
access_token 0.1.0
created_at 0.1.0
scope Oauth Scope0.1.0
token_type 0.1.0

Translation

SoftwareVersion
Mastodon 4.0.0
GoToSocial
AttributesMastodonGoToSocial
content 4.0.0
detected_source_language 4.0.0
media_attachments[] Translation Media Attachment4.2.0
poll Translation Poll4.2.0
provider 4.0.0
spoil_text 4.2.0

Translation Media Attachment

SoftwareVersion
Mastodon 4.2.0
GoToSocial
AttributesMastodonGoToSocial
description 4.2.0
id 4.2.0

Translation Poll

SoftwareVersion
Mastodon 4.2.0
GoToSocial
AttributesMastodonGoToSocial
id 4.2.0
options[] Translation Poll Option4.2.0

Translation Poll Option

SoftwareVersion
Mastodon 4.2.0
GoToSocial
AttributesMastodonGoToSocial
title 4.2.0

V1 Filter

SoftwareVersion
Mastodon 2.4.3
GoToSocial
AttributesMastodonGoToSocial
context 2.4.3
expires_at 2.4.3
id 2.4.3
irreversible 2.4.3
whole_word 2.4.3

V1 Search

SoftwareVersion
Mastodon 1.1.0
GoToSocial
AttributesMastodonGoToSocial
accounts[] Account1.1.0
hashtags[] 1.1.0
statuses[] Status1.1.0

V2 Suggestion Source

SoftwareVersion
Mastodon 3.4.0
GoToSocial
ValuesMastodonGoToSocial
global 3.4.0
past_interactions 3.4.0
staff 3.4.0

V2.1 Suggestion Source

SoftwareVersion
Mastodon 4.3.0
GoToSocial
ValuesMastodonGoToSocial
featured 4.3.0
friends_of_friends 4.3.0
most_followed 4.3.0
most_interactions 4.3.0
similar_to_recently_followed 4.3.0

Visibility

SoftwareVersion
Mastodon 0.9.9
GoToSocial
ValuesMastodonGoToSocial
direct 0.9.9
private 0.9.9
public 0.9.9
unlisted 0.9.9

Web Push Subscription

SoftwareVersion
Mastodon 2.4.0
GoToSocial
AttributesMastodonGoToSocial
alerts[admin.report] 4.0.0
alerts[admin.sign_up] 3.5.0
alerts[favourite] 2.4.0
alerts[follow] 2.4.0
alerts[follow_request] 3.1.0
alerts[mention] 2.4.0
alerts[poll] 2.8.0
alerts[reblog] 2.4.0
alerts[status] 3.3.0
alerts[update] 3.5.0
endpoint 2.4.0
id 2.4.0
server_key 2.4.0