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.
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
Uses semantic versioning. Pre-releases are appended with -alpha.[n],
-beta.[n], or -rc.[n]. Nightlies are appended with -nightly.[YYYY-MM-DD].
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
Uses a Mastodon version with +glitch appended. The mastodon version may be a pre-release or nightly.
4.1.4+glitch 
4.3.0-alpha.3+glitch 
4.3.0-nightly.2024-08-25+glitch 
gotosocial
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.
0.17.0 
0.14.0+git-7bc536d 
0.15-rc1+git-65b5366 
0.17.0-SNAPSHOT+git-f037663 
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'
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.
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/"
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]]
# (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"
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" }
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"
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Response | Mastodon | GoToSocial | 
| details[][:key][description]  | 3.4.0 |  | 
| details[][:key][error] Account Error | 3.4.0 |  | 
| error  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Response Credential Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 Role | 4.0.0 |  | 
| source  | 2.4.0 |  | 
| source[fields] Field | 2.4.0 |  | 
| source[follow_requests_count]  | 3.0.0 |  | 
| source[language]  | 2.4.2 |  | 
| source[note]  | 1.5.0 |  | 
| source[privacy] Visibility | 1.5.0 |  | 
| source[sensitive]  | 1.5.0 |  | 
| statuses_count  | 0.1.0 |  | 
| suspended  | 3.3.0 |  | 
| url  | 0.1.0 |  | 
| username  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 Role | 4.0.0 |  | 
| source  | 2.4.0 |  | 
| source[fields] Field | 2.4.0 |  | 
| source[follow_requests_count]  | 3.0.0 |  | 
| source[language]  | 2.4.2 |  | 
| source[note]  | 1.5.0 |  | 
| source[privacy] Visibility | 1.5.0 |  | 
| source[sensitive]  | 1.5.0 |  | 
| statuses_count  | 0.1.0 |  | 
| suspended  | 3.3.0 |  | 
| url  | 0.1.0 |  | 
| username  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 4.3.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.3.0 |  | 
| Response Featured Tag[] | Mastodon | GoToSocial | 
| id  | 3.0.0 |  | 
| last_status_at  | 3.0.0 |  | 
| name  | 3.0.0 |  | 
| status_count  | 3.0.0 |  | 
| url  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| languages[]  | 4.0.0 |  | 
| notify  | 3.3.0 |  | 
| reblogs  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| duration  | 3.5.0 |  | 
| id  | 0.0.0 |  | 
| notifications  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.5.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.5.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
3.2.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| comment  | 3.2.0 |  | 
| id  | 3.2.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 0.0.0 |  | 
| with_suspend  | 4.3.0 |  | 
| Response Relationship[] | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| following  | 2.8.0 |  | 
| limit  | 2.8.0 |  | 
| offset  | 2.8.0 |  | 
| q  | 0.0.0 |  | 
| resolve  | 0.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| acct  | 3.4.0 |  | 
| Response Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.8.0 |  | 
| Response | Mastodon | GoToSocial | 
| profile_url  | 2.8.0 |  | 
| proof_url  | 2.8.0 |  | 
| provider  | 2.8.0 |  | 
| provider_username  | 2.8.0 |  | 
| updated_at  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 0.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.1.0 |  | 
| max_id  | 3.1.0 |  | 
| min_id  | 3.1.0 |  | 
| since_id  | 3.1.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
1.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 1.4.0 |  | 
| Response | Mastodon | GoToSocial | 
| []  | 1.4.0 |  | 
| Software | Version | 
| Mastodon | 
1.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| domain  | 1.4.0 |  | 
| Software | Version | 
| Mastodon | 
1.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| domain  | 1.4.0 |  | 
| Software | Version | 
| Mastodon | 
2.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 2.5.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.1.0 |  | 
| max_id  | 0.0.0 |  | 
| min_id  | 2.6.0 |  | 
| since_id  | 3.1.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Response Featured Tag[] | Mastodon | GoToSocial | 
| id  | 3.0.0 |  | 
| last_status_at  | 3.0.0 |  | 
| name  | 3.0.0 |  | 
| status_count  | 3.0.0 |  | 
| url  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| name  | 3.0.0 |  | 
| Response Featured Tag | Mastodon | GoToSocial | 
| id  | 3.0.0 |  | 
| last_status_at  | 3.0.0 |  | 
| name  | 3.0.0 |  | 
| status_count  | 3.0.0 |  | 
| url  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Response Tag[] | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| context[] Filter Context | 4.0.0 |  | 
| expires_in  | 4.0.0 |  | 
| filter_action Filter Action | 4.0.0 |  | 
| keywords_attributes[][keyword]  | 4.0.0 |  | 
| keywords_attributes[][whole_word]  | 4.0.0 |  | 
| title  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| context[] Filter Context | 4.0.0 |  | 
| expires_in  | 4.0.0 |  | 
| filter_action Filter Action | 4.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 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| filter_id  | 4.0.0 |  | 
| Response Filter Keyword[] | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| filter_id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Response Filter Keyword | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Filter Keyword | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Response Filter Keyword | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| filter_id  | 4.0.0 |  | 
| status_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Filter Status | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| status_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Filter Status | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| status_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Response V1 Filter[] | Mastodon | GoToSocial | 
| context  | 2.4.3 |  | 
| expires_at  | 2.4.3 |  | 
| id  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.4.3 |  | 
| Response V1 Filter | Mastodon | GoToSocial | 
| context  | 2.4.3 |  | 
| expires_at  | 2.4.3 |  | 
| id  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| context[] Filter Context | 2.4.3 |  | 
| expires_in  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| phrase  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Response V1 Filter | Mastodon | GoToSocial | 
| context  | 2.4.3 |  | 
| expires_at  | 2.4.3 |  | 
| id  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| context[] Filter Context | 2.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 Filter | Mastodon | GoToSocial | 
| context  | 2.4.3 |  | 
| expires_at  | 2.4.3 |  | 
| id  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 0.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 0.0.0 |  | 
| Response Relationship | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| Response Tag[] | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 0.0.0 |  | 
| Response Muted Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 1.1.0 |  | 
| category Report Category | 3.5.0 |  | 
| comment  | 1.1.0 |  | 
| forward  | 2.3.0 |  | 
| rule_ids[]  | 3.5.0 |  | 
| status_ids[]  | 1.1.0 |  | 
| Response Report | Mastodon | GoToSocial | 
| action_taken  | 1.1.0 |  | 
| action_taken_at  | 4.0.0 |  | 
| category Report Category | 4.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 Account | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.4.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 2.4.3 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Tag | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Tag | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Response Tag | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| active  | 2.9.1 |  | 
| by_domain  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| display_name  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| limit  | 2.9.1 |  | 
| local  | 2.9.1 |  | 
| max_id  | 2.9.1 |  | 
| min_id  | 2.9.1 |  | 
| pending  | 2.9.1 |  | 
| remote  | 2.9.1 |  | 
| sensitized  | 3.3.0 |  | 
| silenced  | 2.9.1 |  | 
| since_id  | 2.9.1 |  | 
| staff  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Response Admin Account[] | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| by_domain  | 3.5.0 |  | 
| display_name  | 3.5.0 |  | 
| email  | 3.5.0 |  | 
| invited_by  | 3.5.0 |  | 
| ip  | 3.5.0 |  | 
| limit  | 3.5.0 |  | 
| max_id  | 3.5.0 |  | 
| min_id  | 3.5.0 |  | 
| origin Origin Type | 3.5.0 |  | 
| permissions  | 3.5.0 |  | 
| role_ids[]  | 4.0.0 |  | 
| since_id  | 3.5.0 |  | 
| status Status Type | 3.5.0 |  | 
| username  | 3.5.0 |  | 
| Response Admin Account[] | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.3.0 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| report_id  | 2.9.1 |  | 
| send_email_notification  | 2.9.1 |  | 
| text  | 2.9.1 |  | 
| type Admin Action Type | 2.9.1 |  | 
| warning_preset_id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.3.0 |  | 
| Response Admin Account | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| max_id  | 4.0.0 |  | 
| min_id  | 4.0.0 |  | 
| since_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| email  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| canonical_email_hash  | 4.0.0 |  | 
| email  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| end_at  | 3.5.0 |  | 
| instance_accounts[domain]  | 3.5.0 |  | 
| instance_languages[domain]  | 3.5.0 |  | 
| keys[] Admin Dimension Key | 3.5.0 |  | 
| limit  | 3.5.0 |  | 
| start_at  | 3.5.0 |  | 
| tag_languages[id]  | 3.5.0 |  | 
| tag_servers[id]  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| max_id  | 4.0.0 |  | 
| min_id  | 4.0.0 |  | 
| since_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| domain  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| max_id  | 4.0.0 |  | 
| min_id  | 4.0.0 |  | 
| since_id  | 4.0.0 |  | 
| Response Admin Domain Block[] | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| digest  | 4.3.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Admin Domain Block | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| digest  | 4.3.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| domain  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Response Admin Domain Block | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| digest  | 4.3.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Response Admin Domain Block | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| digest  | 4.3.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| max_id  | 4.0.0 |  | 
| min_id  | 4.0.0 |  | 
| since_id  | 4.0.0 |  | 
| Response Admin Email Domain Block[] | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| history[][accounts]  | 4.0.0 |  | 
| history[][day]  | 4.0.0 |  | 
| history[][uses]  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Response Admin Email Domain Block | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| history[][accounts]  | 4.0.0 |  | 
| history[][day]  | 4.0.0 |  | 
| history[][uses]  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| domain  | 4.0.0 |  | 
| Response Admin Email Domain Block | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| history[][accounts]  | 4.0.0 |  | 
| history[][day]  | 4.0.0 |  | 
| history[][uses]  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.0.0 |  | 
| max_id  | 4.0.0 |  | 
| min_id  | 4.0.0 |  | 
| since_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| comment  | 4.0.0 |  | 
| expires_in  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| ip  | 4.0.0 |  | 
| severity Admin Ip Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| end_at  | 3.5.0 |  | 
| instance_accounts[domain]  | 3.5.0 |  | 
| instance_followers[domain]  | 3.5.0 |  | 
| instance_follows[domain]  | 3.5.0 |  | 
| instance_media_attachments[domain]  | 3.5.0 |  | 
| instance_reports[domain]  | 3.5.0 |  | 
| instance_statuses[domain]  | 3.5.0 |  | 
| keys[] Admin Measure Key | 3.5.0 |  | 
| start_at  | 3.5.0 |  | 
| tag_accounts[id]  | 3.5.0 |  | 
| tag_servers[id]  | 3.5.0 |  | 
| tag_uses[id]  | 3.5.0 |  | 
| Response Admin Measure | Mastodon | GoToSocial | 
| data[][date]  | 3.5.0 |  | 
| data[][value]  | 3.5.0 |  | 
| human_value  | 3.5.0 |  | 
| key Admin Measure Key | 3.5.0 |  | 
| previous_total  | 3.5.0 |  | 
| total  | 3.5.0 |  | 
| unit  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 2.9.1 |  | 
| limit  | 2.9.1 |  | 
| resolved  | 2.9.1 |  | 
| target_account_id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Response Trends Link[] | Mastodon | GoToSocial | 
| history[]  | 3.5.0 |  | 
| history[][accounts]  | 3.5.0 |  | 
| history[][day]  | 3.5.0 |  | 
| history[][uses]  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Response Admin Tag[] | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| requires_review  | 3.5.0 |  | 
| trendable  | 3.5.0 |  | 
| usable  | 3.5.0 |  | 
| Parameters | Mastodon | GoToSocial | 
| client_name  | 0.0.0 | 0.1.0 | 
| redirect_uri  | 0.0.0 |  | 
| redirect_uris  | 4.3.0 | 0.1.0 | 
| scopes  | 0.0.0 | 0.1.0 | 
| vapid_keys  | 2.7.2 |  | 
| website  | 0.0.0 | 0.1.0 | 
| Response Credential Application | Mastodon | GoToSocial | 
| client_id  | 0.9.9 |  | 
| client_secret  | 0.9.9 |  | 
| client_secret_expires_at  | 4.3.0 |  | 
| name  | 2.0.0 | 0.1.0 | 
| redirect_uris  | 4.3.0 |  | 
| scopes  | 4.3.0 |  | 
| vapid_keys  | 2.7.2 |  | 
| website  | 2.0.0 | 0.1.0 | 
| Software | Version | 
| Mastodon | 
2.0.0 | 
| GoToSocial |  | 
| Response Application | Mastodon | GoToSocial | 
| name  | 2.0.0 | 0.1.0 | 
| redirect_uris  | 4.3.0 |  | 
| scopes  | 4.3.0 |  | 
| vapid_keys  | 2.7.2 |  | 
| website  | 2.0.0 | 0.1.0 | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| email  | 3.4.0 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Scope | 0.1.0 |  | 
| state  | 0.1.0 |  | 
| Response | Mastodon | GoToSocial | 
| code  | 0.1.0 |  | 
| state  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Scope | 0.1.0 |  | 
| Response Token | Mastodon | GoToSocial | 
| access_token  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| scope Oauth Scope | 0.1.0 |  | 
| token_type  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| client_id  | 0.1.0 |  | 
| client_secret  | 0.1.0 |  | 
| token  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| 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 Scope | 4.3.0 |  | 
| service_documentation  | 4.3.0 |  | 
| token_endpoint  | 4.3.0 |  | 
| token_endpoint_auth_methods_supported[]  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Response Instance | Mastodon | GoToSocial | 
| api_versions  | 4.3.0 |  | 
| api_versions[mastodon]  | 4.3.0 |  | 
| configuration  | 4.0.0 |  | 
| configuration[accounts]  | 4.0.0 |  | 
| configuration[accounts][max_featured_tags]  | 4.0.0 |  | 
| configuration[accounts][max_pinned_statuses]  | 4.3.0 |  | 
| configuration[media_attachments]  | 4.0.0 |  | 
| configuration[media_attachments][description_limit]  | 4.4.0 |  | 
| configuration[media_attachments][image_matrix_limit]  | 4.0.0 |  | 
| configuration[media_attachments][image_size_limit]  | 4.0.0 |  | 
| configuration[media_attachments][supported_mime_types][]  | 4.0.0 |  | 
| configuration[media_attachments][video_frame_rate_limit]  | 4.0.0 |  | 
| configuration[media_attachments][video_matrix_limit]  | 4.0.0 |  | 
| configuration[media_attachments][video_size_limit]  | 4.0.0 |  | 
| configuration[polls]  | 4.0.0 |  | 
| configuration[polls][max_characters_per_option]  | 4.0.0 |  | 
| configuration[polls][max_expiration]  | 4.0.0 |  | 
| configuration[polls][max_options]  | 4.0.0 |  | 
| configuration[polls][min_expiration]  | 4.0.0 |  | 
| configuration[statuses]  | 4.0.0 |  | 
| configuration[statuses][characters_reserved_per_url]  | 4.0.0 |  | 
| configuration[statuses][max_characters]  | 4.0.0 |  | 
| configuration[statuses][max_media_attachments]  | 4.0.0 |  | 
| configuration[translation]  | 4.0.0 |  | 
| configuration[translation][enabled]  | 4.0.0 |  | 
| configuration[urls]  | 4.0.0 |  | 
| configuration[urls][streaming]  | 4.0.0 |  | 
| configuration[vapid][public_key]  | 4.3.0 |  | 
| contact  | 4.0.0 |  | 
| contact[account] Account | 4.0.0 |  | 
| contact[email]  | 4.0.0 |  | 
| description  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| icon[] Instance Icon | 4.3.0 |  | 
| languages[]  | 4.0.0 |  | 
| registrations  | 4.0.0 |  | 
| registrations[approval_required]  | 4.0.0 |  | 
| registrations[enabled]  | 4.0.0 |  | 
| registrations[message]  | 4.0.0 |  | 
| rules[] Rule | 4.0.0 |  | 
| source_url  | 4.0.0 |  | 
| thumbnail  | 4.0.0 |  | 
| thumbnail[blurhash]  | 4.0.0 |  | 
| thumbnail[url]  | 4.0.0 |  | 
| thumbnail[versions]  | 4.0.0 |  | 
| thumbnail[versions][@1x]  | 4.0.0 |  | 
| thumbnail[versions][@2x]  | 4.0.0 |  | 
| title  | 4.0.0 |  | 
| usage  | 4.0.0 |  | 
| usage[users]  | 4.0.0 |  | 
| usage[users][active_month]  | 4.0.0 |  | 
| version  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.2 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
2.1.2 | 
| GoToSocial |  | 
| Response Instance Activity[] | Mastodon | GoToSocial | 
| logins  | 2.1.2 |  | 
| registrations  | 2.1.2 |  | 
| statuses  | 2.1.2 |  | 
| week  | 2.1.2 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Response Rule[] | Mastodon | GoToSocial | 
| hint  | 3.4.0 |  | 
| id  | 3.4.0 |  | 
| text  | 3.4.0 |  | 
| Software | Version | 
| Mastodon |  | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon |  | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Response V1 Instance | Mastodon | GoToSocial | 
| approval_required  | 2.9.2 |  | 
| configuration  | 3.4.2 |  | 
| configuration[accounts]  | 4.0.0 |  | 
| configuration[accounts][max_featured_tags]  | 4.0.0 |  | 
| configuration[media_attachments]  | 3.4.2 |  | 
| configuration[media_attachments][image_matrix_limit]  | 3.4.2 |  | 
| configuration[media_attachments][image_size_limit]  | 3.4.2 |  | 
| configuration[media_attachments][supported_mime_types][]  | 3.4.2 |  | 
| configuration[media_attachments][video_frame_rate_limit]  | 3.4.2 |  | 
| configuration[media_attachments][video_matrix_limit]  | 3.4.2 |  | 
| configuration[media_attachments][video_size_limit]  | 3.4.2 |  | 
| configuration[polls]  | 3.4.2 |  | 
| configuration[polls][max_characters_per_option]  | 3.4.2 |  | 
| configuration[polls][max_expiration]  | 3.4.2 |  | 
| configuration[polls][max_options]  | 3.4.2 |  | 
| configuration[polls][min_expiration]  | 3.4.2 |  | 
| configuration[statuses]  | 3.4.2 |  | 
| configuration[statuses][characters_reserved_per_url]  | 3.4.2 |  | 
| configuration[statuses][max_characters]  | 3.4.2 |  | 
| configuration[statuses][max_media_attachments]  | 3.4.2 |  | 
| contact_account Account | 2.3.0 |  | 
| description  | 1.1.0 |  | 
| email  | 1.1.0 |  | 
| invites_enabled  | 3.1.4 |  | 
| languages[]  | 2.3.0 |  | 
| registrations  | 2.7.2 |  | 
| rules[] Rule | 3.4.0 |  | 
| short_description  | 2.9.2 |  | 
| stats  | 1.6.0 |  | 
| stats[domain_count]  | 1.6.0 |  | 
| stats[status_count]  | 1.6.0 |  | 
| stats[user_count]  | 1.6.0 |  | 
| thumbnail  | 1.6.1 |  | 
| title  | 1.1.0 |  | 
| uri  | 1.1.0 |  | 
| urls  | 1.4.2 |  | 
| urls[streaming_api]  | 1.4.2 |  | 
| version  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| name  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| name  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.0.0 | 
| GoToSocial |  | 
| Response Custom Emoji[] | Mastodon | GoToSocial | 
| category  | 3.0.0 |  | 
| shortcode  | 2.0.0 |  | 
| static_url  | 2.0.0 |  | 
| url  | 2.0.0 |  | 
| visible_in_picker  | 2.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.0.0 |  | 
| local  | 3.0.0 |  | 
| offset  | 3.0.0 |  | 
| order  | 3.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.0.0 |  | 
| offset  | 3.0.0 |  | 
| Response Tag[] | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.5.0 |  | 
| offset  | 3.5.0 |  | 
| Response Tag[] | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.5.0 |  | 
| offset  | 3.5.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 3.5.0 |  | 
| offset  | 3.5.0 |  | 
| Response Trends Link[] | Mastodon | GoToSocial | 
| history[]  | 3.5.0 |  | 
| history[][accounts]  | 3.5.0 |  | 
| history[][day]  | 3.5.0 |  | 
| history[][uses]  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_id  | 2.9.0 |  | 
| exclude_types[] Notification | 0.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[] Notification | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Notification | Mastodon | GoToSocial | 
| account Account | 0.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 |  |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| count  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Response Notification Policy | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Policy | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 4.3.0 |  | 
| max_id  | 4.3.0 |  | 
| min_id  | 4.3.0 |  | 
| since_id  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.3.0 |  | 
| Response Notification Request | Mastodon | GoToSocial | 
| account Account | 4.3.0 |  | 
| id  | 4.3.0 |  | 
| last_status  | 4.3.0 |  | 
| notifications_count  | 4.3.0 |  | 
| updated_at  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| merged  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| group_key  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| group_key  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| group_key  | 4.3.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| count  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Policy | 3.5.0 |  | 
| subscription[endpoint]  | 2.4.0 |  | 
| subscription[keys][auth]  | 2.4.0 |  | 
| subscription[keys][p256dh]  | 2.4.0 |  | 
| Response Web Push Subscription | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Response Web Push Subscription | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Policy | 3.5.0 |  | 
| Response Web Push Subscription | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| maxheight  | 1.0.0 |  | 
| maxwidth  | 1.0.0 |  | 
| url  | 1.0.0 |  | 
| Response Oembed | Mastodon | GoToSocial | 
| author_name  | 1.0.0 |  | 
| author_url  | 1.0.0 |  | 
| cache_age  | 1.0.0 |  | 
| height  | 1.0.0 |  | 
| html  | 1.0.0 |  | 
| provider_name  | 1.0.0 |  | 
| provider_url  | 1.0.0 |  | 
| title  | 1.0.0 |  | 
| type  | 1.0.0 |  | 
| version  | 1.0.0 |  | 
| width  | 1.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Response Credential Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 Role | 4.0.0 |  | 
| source  | 2.4.0 |  | 
| source[fields] Field | 2.4.0 |  | 
| source[follow_requests_count]  | 3.0.0 |  | 
| source[language]  | 2.4.2 |  | 
| source[note]  | 1.5.0 |  | 
| source[privacy] Visibility | 1.5.0 |  | 
| source[sensitive]  | 1.5.0 |  | 
| statuses_count  | 0.1.0 |  | 
| suspended  | 3.3.0 |  | 
| url  | 0.1.0 |  | 
| username  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Response Credential Account | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 Role | 4.0.0 |  | 
| source  | 2.4.0 |  | 
| source[fields] Field | 2.4.0 |  | 
| source[follow_requests_count]  | 3.0.0 |  | 
| source[language]  | 2.4.2 |  | 
| source[note]  | 1.5.0 |  | 
| source[privacy] Visibility | 1.5.0 |  | 
| source[sensitive]  | 1.5.0 |  | 
| statuses_count  | 0.1.0 |  | 
| suspended  | 3.3.0 |  | 
| url  | 0.1.0 |  | 
| username  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.1 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Query | 2.4.1 |  | 
| resolve  | 2.4.1 |  | 
| type Search Type | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Type | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Visibility | 0.9.9 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Visibility | 2.7.0 |  | 
| Response Scheduled Status | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| media_attachments[] Media Attachment | 2.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] Visibility | 2.7.0 |  | 
| params[with_rate_limit]  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id[]  | 4.3.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Deleted Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| text  | 2.9.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| lang  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| limit  | 0.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| limit  | 0.0.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
1.4.2 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 1.4.2 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
1.4.2 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 1.4.2 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
1.6.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 1.6.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
1.6.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 1.6.0 |  | 
| Response Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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 Status | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| Response Status Source | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| spoiler_text  | 3.5.0 |  | 
| text  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 0.0.0 |  | 
| Response Preview Card | Mastodon | GoToSocial | 
| author_name  | 1.3.0 |  | 
| author_url  | 1.3.0 |  | 
| authors[] Preview Card Author | 4.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 Type | 1.3.0 |  | 
| url  | 1.0.0 |  | 
| width  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| description  | 3.1.3 |  | 
| file  | 3.1.3 |  | 
| focus  | 3.1.3 |  | 
| thumbnail  | 3.2.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.3 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 3.1.3 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| description  | 0.0.0 |  | 
| focus  | 2.3.0 |  | 
| id  | 0.0.0 |  | 
| thumbnail  | 3.2.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| description  | 0.0.0 |  | 
| file  | 0.0.0 |  | 
| focus  | 2.3.0 |  | 
| thumbnail  | 3.2.0 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.8.0 |  | 
| Response Poll | Mastodon | GoToSocial | 
| emojis[] Custom Emoji | 2.8.0 |  | 
| expired  | 2.8.0 |  | 
| expires_at  | 2.8.0 |  | 
| id  | 2.8.0 |  | 
| multiple  | 2.8.0 |  | 
| options[] Poll Option | 2.8.0 |  | 
| own_votes  | 2.8.0 |  | 
| voted  | 2.8.0 |  | 
| voters_count  | 2.8.0 |  | 
| votes_count  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| choices[]  | 2.8.0 |  | 
| id  | 2.8.0 |  | 
| Response Poll | Mastodon | GoToSocial | 
| emojis[] Custom Emoji | 2.8.0 |  | 
| expired  | 2.8.0 |  | 
| expires_at  | 2.8.0 |  | 
| id  | 2.8.0 |  | 
| multiple  | 2.8.0 |  | 
| options[] Poll Option | 2.8.0 |  | 
| own_votes  | 2.8.0 |  | 
| voted  | 2.8.0 |  | 
| voters_count  | 2.8.0 |  | 
| votes_count  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 2.7.0 |  | 
| max_id  | 2.7.0 |  | 
| min_id  | 2.7.0 |  | 
| since_id  | 2.7.0 |  | 
| Response Scheduled Status[] | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| media_attachments[] Media Attachment | 2.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] Visibility | 2.7.0 |  | 
| params[with_rate_limit]  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| Response Scheduled Status | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| media_attachments[] Media Attachment | 2.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] Visibility | 2.7.0 |  | 
| params[with_rate_limit]  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Response Scheduled Status | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| media_attachments[] Media Attachment | 2.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] Visibility | 2.7.0 |  | 
| params[with_rate_limit]  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 0.0.0 |  | 
| max_id  | 0.0.0 |  | 
| min_id  | 2.6.0 |  | 
| since_id  | 0.0.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| 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[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 0.0.0 |  | 
| max_id  | 0.0.0 |  | 
| min_id  | 2.6.0 |  | 
| since_id  | 0.0.0 |  | 
| Response Status[] | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
2.6.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| limit  | 2.6.0 |  | 
| max_id  | 2.1.0 |  | 
| min_id  | 2.6.0 |  | 
| since_id  | 2.6.0 |  | 
| Software | Version | 
| Mastodon | 
2.6.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.6.0 |  | 
| Software | Version | 
| Mastodon | 
2.6.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.6.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| exclusive  | 4.2.0 |  | 
| replies_policy Replies Policy | 3.3.0 |  | 
| title  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| exclusive  | 4.2.0 |  | 
| id  | 2.1.0 |  | 
| replies_policy Replies Policy | 3.3.0 |  | 
| title  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| id  | 2.1.0 |  | 
| limit  | 2.1.0 |  | 
| Response Account[] | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_ids[]  | 2.1.0 |  | 
| id  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| account_ids[]  | 2.1.0 |  | 
| id  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Response | Mastodon | GoToSocial | 
| home Marker | 3.0.0 |  | 
| notifications Marker | 3.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| home[last_read_id]  | 3.0.0 |  | 
| notifications[last_read_id]  | 3.0.0 |  | 
| Response Marker | Mastodon | GoToSocial | 
| last_read_id  | 3.0.0 |  | 
| updated_at  | 3.0.0 |  | 
| version  | 3.0.0 |  | 
| Software | Version | 
| Mastodon | 
2.5.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.4.2 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| only_media  | 2.4.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| only_media  | 2.4.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.4 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| only_media  | 2.4.0 |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| tag  | 1.0.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| tag  | 1.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| list  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Parameters | Mastodon | GoToSocial | 
| access_token  | 3.3.0 |  | 
| list  | 3.3.0 |  | 
| stream Streaming Category | 3.3.0 |  | 
| tag  | 3.3.0 |  | 
| type  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| appeal Appeal | 4.3.0 |  | 
| created_at  | 4.3.0 |  | 
| id  | 4.3.0 |  | 
| status_ids[]  | 4.3.0 |  | 
| target_account Account | 4.3.0 |  | 
| text  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account Account | 2.9.1 |  | 
| approved  | 2.9.1 |  | 
| confirmed  | 2.9.1 |  | 
| created_at  | 2.9.1 |  | 
| created_by_application_id  | 2.9.1 |  | 
| disabled  | 2.9.1 |  | 
| domain  | 2.9.1 |  | 
| email  | 2.9.1 |  | 
| id  | 2.9.1 |  | 
| invite_request  | 2.9.1 |  | 
| invited_by_account_id  | 2.9.1 |  | 
| ip  | 2.9.1 |  | 
| ips[] Admin Ip | 3.5.0 |  | 
| locale  | 2.9.1 |  | 
| role Role | 2.9.1 |  | 
| silenced  | 2.9.1 |  | 
| suspended  | 2.9.1 |  | 
| username  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| disable  | 2.9.1 |  | 
| none  | 2.9.1 |  | 
| sensitive  | 3.3.0 |  | 
| silence  | 2.9.1 |  | 
| suspend  | 2.9.1 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| date  | 3.5.0 |  | 
| rate  | 3.5.0 |  | 
| value  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| day  | 3.5.0 |  | 
| month  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| human_key  | 3.5.0 |  | 
| human_value  | 3.5.0 |  | 
| key  | 3.5.0 |  | 
| unit  | 3.5.0 |  | 
| value  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| instance_accounts  | 3.5.0 |  | 
| instance_languages  | 3.5.0 |  | 
| languages  | 3.5.0 |  | 
| servers  | 3.5.0 |  | 
| software_versions  | 3.5.0 |  | 
| sources  | 3.5.0 |  | 
| space_usage  | 3.5.0 |  | 
| tag_languages  | 3.5.0 |  | 
| tag_servers  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| digest  | 4.3.0 |  | 
| domain  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| obfuscate  | 4.0.0 |  | 
| private_comment  | 4.0.0 |  | 
| public_comment  | 4.0.0 |  | 
| reject_media  | 4.0.0 |  | 
| reject_reports  | 4.0.0 |  | 
| severity Admin Domain Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| noop  | 4.0.0 |  | 
| silence  | 4.0.0 |  | 
| suspend  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| created_at  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| history[][accounts]  | 4.0.0 |  | 
| history[][day]  | 4.0.0 |  | 
| history[][uses]  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| ip  | 3.5.0 |  | 
| used_at  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| comment  | 4.0.0 |  | 
| created_at  | 4.0.0 |  | 
| expires_at  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| ip  | 4.0.0 |  | 
| severity Admin Ip Block Severity | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| no_access  | 4.0.0 |  | 
| sign_up_block  | 4.0.0 |  | 
| sign_up_requires_approval  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| data[][date]  | 3.5.0 |  | 
| data[][value]  | 3.5.0 |  | 
| human_value  | 3.5.0 |  | 
| key Admin Measure Key | 3.5.0 |  | 
| previous_total  | 3.5.0 |  | 
| total  | 3.5.0 |  | 
| unit  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| active_users  | 3.5.0 |  | 
| instance_accounts  | 3.5.0 |  | 
| instance_followers  | 3.5.0 |  | 
| instance_follows  | 3.5.0 |  | 
| instance_media_attachments  | 3.5.0 |  | 
| instance_reports  | 3.5.0 |  | 
| instance_statuses  | 3.5.0 |  | 
| interactions  | 3.5.0 |  | 
| new_users  | 3.5.0 |  | 
| opened_reports  | 3.5.0 |  | 
| resolved_reports  | 3.5.0 |  | 
| tag_accounts  | 3.5.0 |  | 
| tag_servers  | 3.5.0 |  | 
| tag_uses  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
2.9.1 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| other  | 3.5.0 |  | 
| spam  | 3.5.0 |  | 
| violation  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| requires_review  | 3.5.0 |  | 
| trendable  | 3.5.0 |  | 
| usable  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| acct  | 3.1.0 |  | 
| id  | 3.1.0 |  | 
| url  | 3.1.0 |  | 
| username  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 3.1.0 |  | 
| url  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| state Appeal State | 4.3.0 |  | 
| text  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| approved  | 4.3.0 |  | 
| pending  | 4.3.0 |  | 
| rejected  | 4.3.0 |  | 
| Attributes | Mastodon | GoToSocial | 
| name  | 2.0.0 | 0.1.0 | 
| redirect_uris  | 4.3.0 |  | 
| scopes  | 4.3.0 |  | 
| vapid_keys  | 2.7.2 |  | 
| website  | 2.0.0 | 0.1.0 | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| private  | 2.8.0 |  | 
| public  | 2.8.0 |  | 
| unlisted  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| canonical_email_hash  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
0.6.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| ancestors[] Status | 0.6.0 |  | 
| descendants[] Status | 0.6.0 |  | 
| Software | Version | 
| Mastodon | 
2.6.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| accounts[] Account | 2.6.0 |  | 
| id  | 2.6.0 |  | 
| last_status Status | 2.6.0 |  | 
| unread  | 2.6.0 |  | 
| Software | Version | 
| Mastodon | 
1.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 Role | 4.0.0 |  | 
| source  | 2.4.0 |  | 
| source[fields] Field | 2.4.0 |  | 
| source[follow_requests_count]  | 3.0.0 |  | 
| source[language]  | 2.4.2 |  | 
| source[note]  | 1.5.0 |  | 
| source[privacy] Visibility | 1.5.0 |  | 
| source[sensitive]  | 1.5.0 |  | 
| statuses_count  | 0.1.0 |  | 
| suspended  | 3.3.0 |  | 
| url  | 0.1.0 |  | 
| username  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.9.9 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| client_id  | 0.9.9 |  | 
| client_secret  | 0.9.9 |  | 
| client_secret_expires_at  | 4.3.0 |  | 
| name  | 2.0.0 | 0.1.0 | 
| redirect_uris  | 4.3.0 |  | 
| scopes  | 4.3.0 |  | 
| vapid_keys  | 2.7.2 |  | 
| website  | 2.0.0 | 0.1.0 | 
| Software | Version | 
| Mastodon | 
2.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| category  | 3.0.0 |  | 
| shortcode  | 2.0.0 |  | 
| static_url  | 2.0.0 |  | 
| url  | 2.0.0 |  | 
| visible_in_picker  | 2.0.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| text  | 2.9.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| silence  | 4.0.0 |  | 
| suspend  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| content  | 4.0.0 |  | 
| updated_at  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| accounts  | 3.5.0 |  | 
| id  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 3.0.0 |  | 
| last_status_at  | 3.0.0 |  | 
| name  | 3.0.0 |  | 
| status_count  | 3.0.0 |  | 
| url  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| name  | 2.4.0 |  | 
| value  | 2.4.0 |  | 
| verified_at  | 2.6.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| hide  | 4.0.0 |  | 
| warn  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| account  | 4.0.0 |  | 
| home  | 4.0.0 |  | 
| notifications  | 4.0.0 |  | 
| public  | 4.0.0 |  | 
| thread  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| keyword  | 4.0.0 |  | 
| whole_word  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| filter Filter | 4.0.0 |  | 
| keyword_matches[]  | 4.0.0 |  | 
| status_matches[]  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 4.0.0 |  | 
| status_id  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| api_versions  | 4.3.0 |  | 
| api_versions[mastodon]  | 4.3.0 |  | 
| configuration  | 4.0.0 |  | 
| configuration[accounts]  | 4.0.0 |  | 
| configuration[accounts][max_featured_tags]  | 4.0.0 |  | 
| configuration[accounts][max_pinned_statuses]  | 4.3.0 |  | 
| configuration[media_attachments]  | 4.0.0 |  | 
| configuration[media_attachments][description_limit]  | 4.4.0 |  | 
| configuration[media_attachments][image_matrix_limit]  | 4.0.0 |  | 
| configuration[media_attachments][image_size_limit]  | 4.0.0 |  | 
| configuration[media_attachments][supported_mime_types][]  | 4.0.0 |  | 
| configuration[media_attachments][video_frame_rate_limit]  | 4.0.0 |  | 
| configuration[media_attachments][video_matrix_limit]  | 4.0.0 |  | 
| configuration[media_attachments][video_size_limit]  | 4.0.0 |  | 
| configuration[polls]  | 4.0.0 |  | 
| configuration[polls][max_characters_per_option]  | 4.0.0 |  | 
| configuration[polls][max_expiration]  | 4.0.0 |  | 
| configuration[polls][max_options]  | 4.0.0 |  | 
| configuration[polls][min_expiration]  | 4.0.0 |  | 
| configuration[statuses]  | 4.0.0 |  | 
| configuration[statuses][characters_reserved_per_url]  | 4.0.0 |  | 
| configuration[statuses][max_characters]  | 4.0.0 |  | 
| configuration[statuses][max_media_attachments]  | 4.0.0 |  | 
| configuration[translation]  | 4.0.0 |  | 
| configuration[translation][enabled]  | 4.0.0 |  | 
| configuration[urls]  | 4.0.0 |  | 
| configuration[urls][streaming]  | 4.0.0 |  | 
| configuration[vapid][public_key]  | 4.3.0 |  | 
| contact  | 4.0.0 |  | 
| contact[account] Account | 4.0.0 |  | 
| contact[email]  | 4.0.0 |  | 
| description  | 4.0.0 |  | 
| domain  | 4.0.0 |  | 
| icon[] Instance Icon | 4.3.0 |  | 
| languages[]  | 4.0.0 |  | 
| registrations  | 4.0.0 |  | 
| registrations[approval_required]  | 4.0.0 |  | 
| registrations[enabled]  | 4.0.0 |  | 
| registrations[message]  | 4.0.0 |  | 
| rules[] Rule | 4.0.0 |  | 
| source_url  | 4.0.0 |  | 
| thumbnail  | 4.0.0 |  | 
| thumbnail[blurhash]  | 4.0.0 |  | 
| thumbnail[url]  | 4.0.0 |  | 
| thumbnail[versions]  | 4.0.0 |  | 
| thumbnail[versions][@1x]  | 4.0.0 |  | 
| thumbnail[versions][@2x]  | 4.0.0 |  | 
| title  | 4.0.0 |  | 
| usage  | 4.0.0 |  | 
| usage[users]  | 4.0.0 |  | 
| usage[users][active_month]  | 4.0.0 |  | 
| version  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.2 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| logins  | 2.1.2 |  | 
| registrations  | 2.1.2 |  | 
| statuses  | 2.1.2 |  | 
| week  | 2.1.2 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| size  | 4.3.0 |  | 
| src  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
2.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 2.1.0 |  | 
| replies_policy Replies Policy | 3.3.0 |  | 
| title  | 2.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| followed  | 3.3.0 |  | 
| list  | 3.3.0 |  | 
| none  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| last_read_id  | 3.0.0 |  | 
| updated_at  | 3.0.0 |  | 
| version  | 3.0.0 |  | 
| Software | Version | 
| Mastodon | 
0.6.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 Info | 0.6.0 |  | 
| meta[small] Media Meta Info | 0.6.0 |  | 
| preview_url  | 0.6.0 |  | 
| remote_url  | 0.6.0 |  | 
| text_url  | 0.6.0 |  | 
| type Media Type | 0.6.0 |  | 
| url  | 0.6.0 |  | 
| Software | Version | 
| Mastodon | 
0.6.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| aspect  | 0.6.0 |  | 
| height  | 0.6.0 |  | 
| width  | 0.6.0 |  | 
| Software | Version | 
| Mastodon | 
0.6.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| audio  | 2.9.1 |  | 
| gifv  | 0.6.0 |  | 
| image  | 0.6.0 |  | 
| unknown  | 0.6.0 |  | 
| video  | 0.6.0 |  | 
| Software | Version | 
| Mastodon | 
0.6.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| acct  | 0.6.0 |  | 
| id  | 0.6.0 |  | 
| url  | 0.6.0 |  | 
| username  | 0.6.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 Emoji | 2.4.0 |  | 
| fields[] Field | 2.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 |  | 
| Software | Version | 
| Mastodon | 
0.9.9 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account Account | 0.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 |  |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| event Relationship Severance Event | 4.3.0 |  | 
| group_key  | 4.3.0 |  | 
| latest_page_notification_at  | 4.3.0 |  | 
| moderation_warning Account Warning | 4.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 Report | 4.3.0 |  | 
| sample_account_ids[]  | 4.3.0 |  | 
| status_id  | 4.3.0 |  | 
| type Notification Type | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| full  | 4.3.0 |  | 
| partial_avatars  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| favourite  | 4.3.0 |  | 
| follow  | 4.3.0 |  | 
| reblog  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account Account | 4.3.0 |  | 
| id  | 4.3.0 |  | 
| last_status  | 4.3.0 |  | 
| notifications_count  | 4.3.0 |  | 
| updated_at  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
0.9.9 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| author_name  | 1.0.0 |  | 
| author_url  | 1.0.0 |  | 
| cache_age  | 1.0.0 |  | 
| height  | 1.0.0 |  | 
| html  | 1.0.0 |  | 
| provider_name  | 1.0.0 |  | 
| provider_url  | 1.0.0 |  | 
| title  | 1.0.0 |  | 
| type  | 1.0.0 |  | 
| version  | 1.0.0 |  | 
| width  | 1.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| local  | 3.5.0 |  | 
| remote  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| emojis[] Custom Emoji | 2.8.0 |  | 
| expired  | 2.8.0 |  | 
| expires_at  | 2.8.0 |  | 
| id  | 2.8.0 |  | 
| multiple  | 2.8.0 |  | 
| options[] Poll Option | 2.8.0 |  | 
| own_votes  | 2.8.0 |  | 
| voted  | 2.8.0 |  | 
| voters_count  | 2.8.0 |  | 
| votes_count  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| title  | 2.8.0 |  | 
| votes_count  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| author_name  | 1.3.0 |  | 
| author_url  | 1.3.0 |  | 
| authors[] Preview Card Author | 4.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 Type | 1.3.0 |  | 
| url  | 1.0.0 |  | 
| width  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account  | 4.3.0 |  | 
| name  | 4.3.0 |  | 
| url  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
1.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| link  | 1.3.0 |  | 
| photo  | 1.3.0 |  | 
| video  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| all  | 3.4.0 |  | 
| followed  | 3.4.0 |  | 
| follower  | 3.4.0 |  | 
| none  | 3.4.0 |  | 
| Software | Version | 
| Mastodon | 
3.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| count  | 3.1.0 |  | 
| me  | 3.1.0 |  | 
| name  | 3.1.0 |  | 
| static_url  | 3.1.0 |  | 
| url  | 3.1.0 |  | 
| Software | Version | 
| Mastodon | 
0.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 Type | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| account_suspension  | 4.3.0 |  | 
| domain_block  | 4.3.0 |  | 
| user_domain_block  | 4.3.0 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| followed  | 3.3.0 |  | 
| list  | 3.3.0 |  | 
| none  | 3.3.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| action_taken  | 1.1.0 |  | 
| action_taken_at  | 4.0.0 |  | 
| category Report Category | 4.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 Account | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| legal  | 4.2.0 |  | 
| other  | 4.0.0 |  | 
| spam  | 4.0.0 |  | 
| violation  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| color  | 4.0.0 |  | 
| highlighted  | 4.0.0 |  | 
| id  | 4.0.0 |  | 
| name  | 4.0.0 |  | 
| permissions  | 4.0.0 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| hint  | 3.4.0 |  | 
| id  | 3.4.0 |  | 
| text  | 3.4.0 |  | 
| Software | Version | 
| Mastodon | 
2.7.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 2.7.0 |  | 
| media_attachments[] Media Attachment | 2.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] Visibility | 2.7.0 |  | 
| params[with_rate_limit]  | 2.7.0 |  | 
| scheduled_at  | 2.7.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.1 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| accounts[] Account | 2.4.1 |  | 
| hashtags[] Tag | 2.4.1 |  | 
| statuses[] Status | 2.4.1 |  | 
| Software | Version | 
| Mastodon | 
2.4.1 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.8.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| accounts  | 2.8.0 |  | 
| hashtags  | 2.8.0 |  | 
| statuses  | 2.8.0 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account  | 0.1.0 |  | 
| application  | 0.9.9 |  | 
| application[name]  | 0.9.9 |  | 
| application[website]  | 0.9.9 |  | 
| bookmarked  | 3.1.0 |  | 
| card Preview Card | 2.6.0 |  | 
| content  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| edited_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 2.0.0 |  | 
| favorited  | 0.1.0 |  | 
| favourites_count  | 0.1.0 |  | 
| filtered[] Filter Result | 4.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 Attachment | 0.6.0 |  | 
| mentions[] Mention | 0.6.0 |  | 
| muted  | 1.4.0 |  | 
| pinned  | 1.6.0 |  | 
| poll Poll | 2.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[] Tag | 0.6.0 |  | 
| uri  | 0.1.0 |  | 
| url  | 0.1.0 |  | 
| visibility Visibility | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| account Account | 3.5.0 |  | 
| content  | 3.5.0 |  | 
| created_at  | 3.5.0 |  | 
| emojis[] Custom Emoji | 3.5.0 |  | 
| media_attachments[] Media Attachment | 3.5.0 |  | 
| poll[options][][title]  | 3.5.0 |  | 
| sensitive  | 3.5.0 |  | 
| spoiler_text  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| id  | 3.5.0 |  | 
| spoiler_text  | 3.5.0 |  | 
| text  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| active  | 3.5.0 |  | 
| disabled  | 3.5.0 |  | 
| pending  | 3.5.0 |  | 
| silenced  | 3.5.0 |  | 
| suspended  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
3.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| conversation  | 2.6.0 |  | 
| update  | 2.4.0 |  | 
| Software | Version | 
| Mastodon | 
1.4.2 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| notification  | 1.4.2 |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| delete  | 1.0.0 |  | 
| status.update  | 3.5.0 |  | 
| update  | 1.0.0 |  | 
| Software | Version | 
| Mastodon | 
1.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
0.9.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| name  | 0.9.0 |  | 
| url  | 0.9.0 |  | 
| Software | Version | 
| Mastodon | 
3.0.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| home  | 3.0.0 |  | 
| notifications  | 3.0.0 |  | 
| Software | Version | 
| Mastodon | 
0.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| access_token  | 0.1.0 |  | 
| created_at  | 0.1.0 |  | 
| scope Oauth Scope | 0.1.0 |  | 
| token_type  | 0.1.0 |  | 
| Software | Version | 
| Mastodon | 
4.0.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| description  | 4.2.0 |  | 
| id  | 4.2.0 |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Software | Version | 
| Mastodon | 
4.2.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| title  | 4.2.0 |  | 
| Software | Version | 
| Mastodon | 
3.5.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| history[]  | 3.5.0 |  | 
| history[][accounts]  | 3.5.0 |  | 
| history[][day]  | 3.5.0 |  | 
| history[][uses]  | 3.5.0 |  | 
| Software | Version | 
| Mastodon | 
2.4.3 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| context  | 2.4.3 |  | 
| expires_at  | 2.4.3 |  | 
| id  | 2.4.3 |  | 
| irreversible  | 2.4.3 |  | 
| whole_word  | 2.4.3 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| approval_required  | 2.9.2 |  | 
| configuration  | 3.4.2 |  | 
| configuration[accounts]  | 4.0.0 |  | 
| configuration[accounts][max_featured_tags]  | 4.0.0 |  | 
| configuration[media_attachments]  | 3.4.2 |  | 
| configuration[media_attachments][image_matrix_limit]  | 3.4.2 |  | 
| configuration[media_attachments][image_size_limit]  | 3.4.2 |  | 
| configuration[media_attachments][supported_mime_types][]  | 3.4.2 |  | 
| configuration[media_attachments][video_frame_rate_limit]  | 3.4.2 |  | 
| configuration[media_attachments][video_matrix_limit]  | 3.4.2 |  | 
| configuration[media_attachments][video_size_limit]  | 3.4.2 |  | 
| configuration[polls]  | 3.4.2 |  | 
| configuration[polls][max_characters_per_option]  | 3.4.2 |  | 
| configuration[polls][max_expiration]  | 3.4.2 |  | 
| configuration[polls][max_options]  | 3.4.2 |  | 
| configuration[polls][min_expiration]  | 3.4.2 |  | 
| configuration[statuses]  | 3.4.2 |  | 
| configuration[statuses][characters_reserved_per_url]  | 3.4.2 |  | 
| configuration[statuses][max_characters]  | 3.4.2 |  | 
| configuration[statuses][max_media_attachments]  | 3.4.2 |  | 
| contact_account Account | 2.3.0 |  | 
| description  | 1.1.0 |  | 
| email  | 1.1.0 |  | 
| invites_enabled  | 3.1.4 |  | 
| languages[]  | 2.3.0 |  | 
| registrations  | 2.7.2 |  | 
| rules[] Rule | 3.4.0 |  | 
| short_description  | 2.9.2 |  | 
| stats  | 1.6.0 |  | 
| stats[domain_count]  | 1.6.0 |  | 
| stats[status_count]  | 1.6.0 |  | 
| stats[user_count]  | 1.6.0 |  | 
| thumbnail  | 1.6.1 |  | 
| title  | 1.1.0 |  | 
| uri  | 1.1.0 |  | 
| urls  | 1.4.2 |  | 
| urls[streaming_api]  | 1.4.2 |  | 
| version  | 1.3.0 |  | 
| Software | Version | 
| Mastodon | 
1.1.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| accounts[] Account | 1.1.0 |  | 
| hashtags[]  | 1.1.0 |  | 
| statuses[] Status | 1.1.0 |  | 
| Software | Version | 
| Mastodon | 
3.4.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| global  | 3.4.0 |  | 
| past_interactions  | 3.4.0 |  | 
| staff  | 3.4.0 |  | 
| Software | Version | 
| Mastodon | 
4.3.0 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| 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 |  | 
| Software | Version | 
| Mastodon | 
0.9.9 | 
| GoToSocial |  | 
| Values | Mastodon | GoToSocial | 
| direct  | 0.9.9 |  | 
| private  | 0.9.9 |  | 
| public  | 0.9.9 |  | 
| unlisted  | 0.9.9 |  | 
| Software | Version | 
| Mastodon | 
2.4.0 | 
| GoToSocial |  | 
| Attributes | Mastodon | GoToSocial | 
| 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 |  |