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 | |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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.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 |
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 |
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 | |