add entity tests

pull/397/head
halcy 2025-02-15 00:41:32 +02:00
rodzic afb13b1c8b
commit 29a6b6d2a9
27 zmienionych plików z 4710 dodań i 253 usunięć

Wyświetl plik

@ -346,6 +346,30 @@ Return types
.. autoclass:: mastodon.return_types.AccountCreationErrorDetailsField .. autoclass:: mastodon.return_types.AccountCreationErrorDetailsField
:members: :members:
.. autoclass:: mastodon.return_types.NotificationPolicy
:members:
.. autoclass:: mastodon.return_types.NotificationPolicySummary
:members:
.. autoclass:: mastodon.return_types.RelationshipSeveranceEvent
:members:
.. autoclass:: mastodon.return_types.GroupedNotificationsResults
:members:
.. autoclass:: mastodon.return_types.PartialAccountWithAvatar
:members:
.. autoclass:: mastodon.return_types.NotificationGroup
:members:
.. autoclass:: mastodon.return_types.AccountWarning
:members:
.. autoclass:: mastodon.return_types.UnreadNotificationsCount
:members:
Deprecated types Deprecated types
================ ================
.. autoclass:: mastodon.return_types.Filter .. autoclass:: mastodon.return_types.Filter
@ -356,4 +380,3 @@ Deprecated types
.. autoclass:: mastodon.return_types.IdentityProof .. autoclass:: mastodon.return_types.IdentityProof
:members: :members:

Wyświetl plik

@ -285,6 +285,14 @@ class Account(AttribAccessDict):
* 4.1.0: added * 4.1.0: added
""" """
memorial: "bool"
"""
Boolean indicating whether the account is an in-memoriam account.
Version history:
* 4.2.0: added
"""
_version = "4.2.0" _version = "4.2.0"
class AccountField(AttribAccessDict): class AccountField(AttribAccessDict):
@ -3361,7 +3369,15 @@ class InstanceRegistrations(AttribAccessDict):
* 4.0.0: added * 4.0.0: added
""" """
_version = "4.0.0" sign_up_url: "Optional[str]"
"""
URL to the sign-up form for this instance. Only present for the v2 API variant of the instance API. (optional)
Version history:
* 4.2.0: added
"""
_version = "4.2.0"
class InstanceContact(AttribAccessDict): class InstanceContact(AttribAccessDict):
""" """
@ -4692,7 +4708,7 @@ class StreamReaction(AttribAccessDict):
.. code-block:: python .. code-block:: python
# Returns a StreamReaction object # Returns a StreamReaction object
TODO_TO_BE_IMPLEMENTED # Only available via the streaming API
See also (Mastodon API documentation): https://docs.joinmastodon.org/methods/streaming/ See also (Mastodon API documentation): https://docs.joinmastodon.org/methods/streaming/
""" """
@ -4896,7 +4912,7 @@ class AdminAccount(AttribAccessDict):
sensitized: "bool" sensitized: "bool"
""" """
Undocumented. If you know what this means, please let me know. Boolean indicating whether the account has been marked as force-sensitive.
Version history: Version history:
* 2.9.1: added * 2.9.1: added
@ -5315,7 +5331,7 @@ class AdminCanonicalEmailBlock(AttribAccessDict):
.. code-block:: python .. code-block:: python
# Returns a AdminCanonicalEmailBlock object # Returns a AdminCanonicalEmailBlock object
TODO_TO_BE_IMPLEMENTED api2.admin_create_canonical_email_block(email=<some email>)
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/Admin_CanonicalEmailBlock See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/Admin_CanonicalEmailBlock
""" """
@ -5695,7 +5711,7 @@ class IdentityProof(AttribAccessDict):
.. code-block:: python .. code-block:: python
# Returns a IdentityProof object # Returns a IdentityProof object
TODO_TO_BE_IMPLEMENTED # Deprecated since 3.5.0 and eventually removed, there is no way to get this on current versions of Mastodon.
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/IdentityProof See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/IdentityProof
""" """
@ -5791,17 +5807,29 @@ class Suggestion(AttribAccessDict):
.. code-block:: python .. code-block:: python
# Returns a Suggestion object # Returns a Suggestion object
TODO_TO_BE_IMPLEMENTED mastodon.suggestions()[0]
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/Suggestion See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/Suggestion
""" """
source: "str" source: "str"
""" """
THIS FIELD IS DEPRECATED. IT IS RECOMMENDED THAT YOU DO NOT USE IT.
The reason this account is being suggested. The reason this account is being suggested.
Version history: Version history:
* 3.4.0: added * 3.4.0: added
* 4.3.0: deprecated
"""
sources: "NonPaginatableList[str]"
"""
The reasons this account is being suggested.
Should contain (as text): SuggestionSourceEnum
Version history:
* 4.3.0: added
""" """
account: "Account" account: "Account"
@ -5812,7 +5840,7 @@ class Suggestion(AttribAccessDict):
* 3.4.0: added * 3.4.0: added
""" """
_version = "3.4.0" _version = "4.3.0"
class Translation(AttribAccessDict): class Translation(AttribAccessDict):
""" """
@ -5982,6 +6010,503 @@ class AccountCreationErrorDetailsField(AttribAccessDict):
_version = "3.4.0" _version = "3.4.0"
class NotificationPolicy(AttribAccessDict):
"""
Represents the notification filtering policy of the user.
Example:
.. code-block:: python
# Returns a NotificationPolicy object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/NotificationPolicy
"""
for_not_following: "str"
"""
Whether to accept, filter or drop notifications from accounts the user is not following.
Version history:
* 4.3.0: added
"""
for_not_followers: "str"
"""
Whether to accept, filter or drop notifications from accounts that are not following the user.
Version history:
* 4.3.0: added
"""
for_new_accounts: "str"
"""
Whether to accept, filter or drop notifications from accounts created in the past 30 days.
Version history:
* 4.3.0: added
"""
for_private_mentions: "str"
"""
Whether to accept, filter or drop notifications from private mentions.
Version history:
* 4.3.0: added
"""
for_limited_accounts: "str"
"""
Whether to accept, filter or drop notifications from accounts that were limited by a moderator.
Version history:
* 4.3.0: added
"""
summary: "NotificationPolicySummary"
"""
A summary of the filtered notifications.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class NotificationPolicySummary(AttribAccessDict):
"""
A summary of the filtered notifications.
Example:
.. code-block:: python
# Returns a NotificationPolicySummary object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/NotificationPolicy
"""
pending_requests_count: "int"
"""
Number of different accounts from which the user has non-dismissed filtered notifications. Capped at 100.
Version history:
* 4.3.0: added
"""
pending_notifications_count: "int"
"""
Number of total non-dismissed filtered notifications. May be inaccurate.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class RelationshipSeveranceEvent(AttribAccessDict):
"""
Summary of a moderation or block event that caused follow relationships to be severed.
Example:
.. code-block:: python
# Returns a RelationshipSeveranceEvent object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/RelationshipSeveranceEvent
"""
id: "str"
"""
The ID of the relationship severance event in the database.
Version history:
* 4.3.0: added
"""
type: "str"
"""
Type of event.
Version history:
* 4.3.0: added
"""
purged: "bool"
"""
Whether the list of severed relationships is unavailable because the data has been purged.
Version history:
* 4.3.0: added
"""
target_name: "str"
"""
Name of the target of the moderation/block event. This is either a domain name or a user handle, depending on the event type.
Version history:
* 4.3.0: added
"""
followers_count: "int"
"""
Number of followers that were removed as result of the event.
Version history:
* 4.3.0: added
"""
following_count: "int"
"""
Number of accounts the user stopped following as result of the event.
Version history:
* 4.3.0: added
"""
created_at: "datetime"
"""
When the event took place.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class GroupedNotificationsResults(AttribAccessDict):
"""
Container for grouped notifications plus referenced accounts and statuses.
Example:
.. code-block:: python
# Returns a GroupedNotificationsResults object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/GroupedNotificationsResults
"""
accounts: "NonPaginatableList[Account]"
"""
Accounts referenced by grouped notifications.
Version history:
* 4.3.0: added
"""
partial_accounts: "Optional[NonPaginatableList[PartialAccountWithAvatar]]"
"""
Partial accounts referenced by grouped notifications. Only returned with expand_accounts=partial_avatars. (optional)
Version history:
* 4.3.0: added
"""
statuses: "NonPaginatableList[Status]"
"""
Statuses referenced by grouped notifications.
Version history:
* 4.3.0: added
"""
notification_groups: "NonPaginatableList[NotificationGroup]"
"""
The grouped notifications themselves.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class PartialAccountWithAvatar(AttribAccessDict):
"""
A stripped-down version of Account, containing only what is necessary to display avatars and a few other fields.
Example:
.. code-block:: python
# Returns a PartialAccountWithAvatar object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/GroupedNotificationsResults
"""
id: "str"
"""
The account ID.
Version history:
* 4.3.0: added
"""
acct: "str"
"""
The Webfinger account URI.
Version history:
* 4.3.0: added
"""
url: "str"
"""
The location of the users profile page.
Version history:
* 4.3.0: added
"""
avatar: "str"
"""
An image icon (avatar) shown in the profile.
Version history:
* 4.3.0: added
"""
avatar_static: "str"
"""
A static version of the avatar. May differ if the main avatar is animated.
Version history:
* 4.3.0: added
"""
locked: "bool"
"""
Whether the account manually approves follow requests.
Version history:
* 4.3.0: added
"""
bot: "bool"
"""
Indicates that the account may perform automated actions.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class NotificationGroup(AttribAccessDict):
"""
A group of related notifications, plus metadata for pagination.
Example:
.. code-block:: python
# Returns a NotificationGroup object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/GroupedNotificationsResults
"""
group_key: "str"
"""
Group key identifying the grouped notifications. Treated as opaque.
Version history:
* 4.3.0: added
"""
notifications_count: "int"
"""
Total number of individual notifications in this group.
Version history:
* 4.3.0: added
"""
type: "str"
"""
The type of event that resulted in the notifications.
Should contain (as text): NotificationTypeEnum
Version history:
* 4.3.0: added
"""
most_recent_notification_id: "str"
"""
ID of the most recent notification in the group.
Version history:
* 4.3.0: added
"""
page_min_id: "Optional[str]"
"""
ID of the oldest notification in this group within the current page. (optional)
Version history:
* 4.3.0: added
"""
page_max_id: "Optional[str]"
"""
ID of the newest notification in this group within the current page. (optional)
Version history:
* 4.3.0: added
"""
latest_page_notification_at: "Optional[datetime]"
"""
Date at which the most recent notification within this group (in the current page) was created. (optional)
Version history:
* 4.3.0: added
"""
sample_account_ids: "NonPaginatableList[str]"
"""
IDs of some of the accounts who most recently triggered notifications in this group.
Version history:
* 4.3.0: added
"""
status_id: "Optional[str]"
"""
ID of the Status that was the object of the notification. (optional)
Version history:
* 4.3.0: added
"""
report: "Optional[Report]"
"""
Report that was the object of the notification. (optional)
Version history:
* 4.3.0: added
"""
event: "Optional[RelationshipSeveranceEvent]"
"""
Summary of the event that caused follow relationships to be severed. (optional)
Version history:
* 4.3.0: added
"""
moderation_warning: "Optional[AccountWarning]"
"""
Moderation warning that caused the notification. (optional)
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class AccountWarning(AttribAccessDict):
"""
Moderation warning against a particular account.
Example:
.. code-block:: python
# Returns a AccountWarning object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/entities/AccountWarning
"""
id: "str"
"""
The ID of the account warning in the database.
Version history:
* 4.3.0: added
"""
action: "str"
"""
Action taken against the account.
Version history:
* 4.3.0: added
"""
text: "str"
"""
Message from the moderator to the target account.
Version history:
* 4.3.0: added
"""
status_ids: "Optional[NonPaginatableList[str]]"
"""
List of status IDs relevant to the warning. May be null. (nullable)
Version history:
* 4.3.0: added
"""
target_account: "Account"
"""
Account against which a moderation decision has been taken.
Version history:
* 4.3.0: added
"""
appeal: "Optional[Appeal]"
"""
Appeal submitted by the target account, if any. (nullable)
Version history:
* 4.3.0: added
"""
created_at: "datetime"
"""
When the event took place.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
class UnreadNotificationsCount(AttribAccessDict):
"""
Get the (capped) number of unread notifications for the current user.
Example:
.. code-block:: python
# Returns a UnreadNotificationsCount object
TODO_TO_BE_IMPLEMENTED
See also (Mastodon API documentation): https://docs.joinmastodon.org/methods/notifications/#unread_count
"""
count: "int"
"""
The capped number of unread notifications. The cap is not documented.
Version history:
* 4.3.0: added
"""
_version = "4.3.0"
ENTITY_NAME_MAP = { ENTITY_NAME_MAP = {
"Account": Account, "Account": Account,
"AccountField": AccountField, "AccountField": AccountField,
@ -6082,6 +6607,14 @@ ENTITY_NAME_MAP = {
"AccountCreationError": AccountCreationError, "AccountCreationError": AccountCreationError,
"AccountCreationErrorDetails": AccountCreationErrorDetails, "AccountCreationErrorDetails": AccountCreationErrorDetails,
"AccountCreationErrorDetailsField": AccountCreationErrorDetailsField, "AccountCreationErrorDetailsField": AccountCreationErrorDetailsField,
"NotificationPolicy": NotificationPolicy,
"NotificationPolicySummary": NotificationPolicySummary,
"RelationshipSeveranceEvent": RelationshipSeveranceEvent,
"GroupedNotificationsResults": GroupedNotificationsResults,
"PartialAccountWithAvatar": PartialAccountWithAvatar,
"NotificationGroup": NotificationGroup,
"AccountWarning": AccountWarning,
"UnreadNotificationsCount": UnreadNotificationsCount,
} }
__all__ = [ __all__ = [
"Account", "Account",
@ -6183,5 +6716,13 @@ __all__ = [
"AccountCreationError", "AccountCreationError",
"AccountCreationErrorDetails", "AccountCreationErrorDetails",
"AccountCreationErrorDetailsField", "AccountCreationErrorDetailsField",
"NotificationPolicy",
"NotificationPolicySummary",
"RelationshipSeveranceEvent",
"GroupedNotificationsResults",
"PartialAccountWithAvatar",
"NotificationGroup",
"AccountWarning",
"UnreadNotificationsCount",
] ]

Wyświetl plik

@ -161,7 +161,9 @@ if sys.version_info < (3, 9):
AdminMeasure, AdminMeasureData, AdminDimension, AdminDimensionData, AdminRetention, AdminCohort, \ AdminMeasure, AdminMeasureData, AdminDimension, AdminDimensionData, AdminRetention, AdminCohort, \
AdminDomainBlock, AdminCanonicalEmailBlock, AdminDomainAllow, AdminEmailDomainBlock, AdminEmailDomainBlockHistory, AdminIpBlock, \ AdminDomainBlock, AdminCanonicalEmailBlock, AdminDomainAllow, AdminEmailDomainBlock, AdminEmailDomainBlockHistory, AdminIpBlock, \
DomainBlock, ExtendedDescription, FilterKeyword, FilterStatus, IdentityProof, StatusSource, \ DomainBlock, ExtendedDescription, FilterKeyword, FilterStatus, IdentityProof, StatusSource, \
Suggestion, Translation, AccountCreationError, AccountCreationErrorDetails, AccountCreationErrorDetailsField Suggestion, Translation, AccountCreationError, AccountCreationErrorDetails, AccountCreationErrorDetailsField, NotificationPolicy, \
NotificationPolicySummary, RelationshipSeveranceEvent, GroupedNotificationsResults, PartialAccountWithAvatar, NotificationGroup, AccountWarning, \
UnreadNotificationsCount
if isinstance(t, ForwardRef): if isinstance(t, ForwardRef):
try: try:
t = t._evaluate(globals(), locals(), frozenset()) t = t._evaluate(globals(), locals(), frozenset())

Wyświetl plik

@ -8585,7 +8585,7 @@
"func_call_real": null, "func_call_real": null,
"func_call_additional": null, "func_call_additional": null,
"func_alternate_acc": null, "func_alternate_acc": null,
"manual_update": false, "manual_update": true,
"is_deprecated": true, "is_deprecated": true,
"masto_doc_link": "https://docs.joinmastodon.org/entities/IdentityProof", "masto_doc_link": "https://docs.joinmastodon.org/entities/IdentityProof",
"description": "A cryptographic proof-of-identity. Deprecated since 3.5.0.", "description": "A cryptographic proof-of-identity. Deprecated since 3.5.0.",
@ -8728,7 +8728,7 @@
{ {
"name": "Suggestion", "name": "Suggestion",
"python_name": "Suggestion", "python_name": "Suggestion",
"func_call": "mastodon.suggestions()[0]", "func_call": "mastodon.suggestions_v2()[0]",
"func_call_real": null, "func_call_real": null,
"func_call_additional": null, "func_call_additional": null,
"func_alternate_acc": null, "func_alternate_acc": null,

Wyświetl plik

@ -20,7 +20,7 @@ interactions:
"The original server operated by the Mastodon gGmbH non-profit", "description": "The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07", "", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count": "urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2521623, "status_count": 120126443, "domain_count": 81755}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png", 2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled": "languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses": true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url": {"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
@ -41,8 +41,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -84,11 +84,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '232' - '220'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:45 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -98,9 +98,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 5, 2 - 0, 5, 2
X-Served-By: X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410021-HEL - cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410026-HEL
X-Timer: X-Timer:
- S1739547500.398876,VS0,VE0 - S1739572786.988993,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -112,7 +112,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"e83f947e4236ab50c372b04653b2c955" - W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -124,13 +124,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '173' - '270'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:35:00.651194Z' - '2025-02-14T22:40:00.053698Z'
x-request-id: x-request-id:
- 65e3ef547e7f34e6712a02c124593883 - 8280556bb02fca4d6ed4a6da22529247
x-runtime: x-runtime:
- '0.266735' - '0.032541'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 2
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410025-HEL
X-Timer:
- S1739572788.768476,VS0,VE0
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +250,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 2 - 0, 0, 2
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410027-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410025-HEL
X-Timer: X-Timer:
- S1739547502.976318,VS0,VE0 - S1739572788.804491,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -20,7 +20,7 @@ interactions:
"The original server operated by the Mastodon gGmbH non-profit", "description": "The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07", "", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count": "urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2521623, "status_count": 120126443, "domain_count": 81755}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png", 2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled": "languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses": true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url": {"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
@ -41,8 +41,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -84,11 +84,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '232' - '220'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -96,11 +96,11 @@ interactions:
X-Cache: X-Cache:
- MISS, HIT, HIT - MISS, HIT, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 5, 1 - 0, 5, 2
X-Served-By: X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410023-HEL - cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410030-HEL
X-Timer: X-Timer:
- S1739547501.502324,VS0,VE1 - S1739572786.128363,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -112,7 +112,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"e83f947e4236ab50c372b04653b2c955" - W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -124,13 +124,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '173' - '270'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:35:00.651194Z' - '2025-02-14T22:40:00.053698Z'
x-request-id: x-request-id:
- 65e3ef547e7f34e6712a02c124593883 - 8280556bb02fca4d6ed4a6da22529247
x-runtime: x-runtime:
- '0.266735' - '0.032541'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +113,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410026-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL
X-Timer: X-Timer:
- S1739547501.012544,VS0,VE1 - S1739572787.632292,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 1
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410025-HEL
X-Timer:
- S1739572788.598295,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +248,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 2 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410026-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410025-HEL
X-Timer: X-Timer:
- S1739547502.868892,VS0,VE0 - S1739572788.635140,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +113,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410023-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410022-HEL
X-Timer: X-Timer:
- S1739547501.927990,VS0,VE2 - S1739572787.552375,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '222'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:48 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 4
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410030-HEL
X-Timer:
- S1739572788.125459,VS0,VE0
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -99,11 +236,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '1' - '2'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:22 GMT - Fri, 14 Feb 2025 22:39:48 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +250,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 3 - 0, 0, 3
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410026-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL
X-Timer: X-Timer:
- S1739547502.183156,VS0,VE0 - S1739572788.160277,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '222'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:48 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 5
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410030-HEL
X-Timer:
- S1739572788.246194,VS0,VE0
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:22 GMT - Fri, 14 Feb 2025 22:39:48 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +248,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 3 - 0, 0, 4
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL
X-Timer: X-Timer:
- S1739547502.256672,VS0,VE0 - S1739572788.292554,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +111,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 2 - 0, 0, 7
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410021-HEL
X-Timer: X-Timer:
- S1739547502.792309,VS0,VE0 - S1739572788.521656,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -20,7 +20,7 @@ interactions:
"The original server operated by the Mastodon gGmbH non-profit", "description": "The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07", "", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count": "urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2521623, "status_count": 120126443, "domain_count": 81755}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png", 2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled": "languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses": true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url": {"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
@ -41,8 +41,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -84,11 +84,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '233' - '221'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -98,9 +98,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 5, 1 - 0, 5, 1
X-Served-By: X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410020-HEL - cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410033-HEL
X-Timer: X-Timer:
- S1739547501.466227,VS0,VE1 - S1739572787.118459,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -112,7 +112,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"e83f947e4236ab50c372b04653b2c955" - W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -124,13 +124,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '173' - '270'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:35:00.651194Z' - '2025-02-14T22:40:00.053698Z'
x-request-id: x-request-id:
- 65e3ef547e7f34e6712a02c124593883 - 8280556bb02fca4d6ed4a6da22529247
x-runtime: x-runtime:
- '0.266735' - '0.032541'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '222'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 1
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410022-HEL
X-Timer:
- S1739572788.902454,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:22 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +250,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 2 - 0, 0, 2
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410031-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410022-HEL
X-Timer: X-Timer:
- S1739547502.042645,VS0,VE0 - S1739572788.948563,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 0
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410028-HEL
X-Timer:
- S1739572787.886371,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +248,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 2
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410029-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410028-HEL
X-Timer: X-Timer:
- S1739547501.260205,VS0,VE1 - S1739572787.918525,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 1
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410020-HEL
X-Timer:
- S1739572787.003751,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +250,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410020-HEL
X-Timer: X-Timer:
- S1739547501.368715,VS0,VE3 - S1739572787.036696,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:22 GMT - Fri, 14 Feb 2025 22:39:48 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +111,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 3
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410022-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410022-HEL
X-Timer: X-Timer:
- S1739547502.108825,VS0,VE1 - S1739572788.040717,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -20,7 +20,7 @@ interactions:
"The original server operated by the Mastodon gGmbH non-profit", "description": "The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07", "", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count": "urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2521623, "status_count": 120126443, "domain_count": 81755}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png", 2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled": "languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses": true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url": {"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
@ -41,8 +41,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -84,11 +84,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '233' - '220'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -96,11 +96,11 @@ interactions:
X-Cache: X-Cache:
- MISS, HIT, HIT - MISS, HIT, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 5, 1 - 0, 5, 2
X-Served-By: X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410027-HEL - cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410021-HEL
X-Timer: X-Timer:
- S1739547501.592523,VS0,VE1 - S1739572786.211966,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -112,7 +112,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"e83f947e4236ab50c372b04653b2c955" - W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -124,13 +124,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '173' - '270'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:35:00.651194Z' - '2025-02-14T22:40:00.053698Z'
x-request-id: x-request-id:
- 65e3ef547e7f34e6712a02c124593883 - 8280556bb02fca4d6ed4a6da22529247
x-runtime: x-runtime:
- '0.266735' - '0.032541'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:
@ -157,7 +157,7 @@ interactions:
"The original server operated by the Mastodon gGmbH non-profit", "description": "The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07", "", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count": "urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2521623, "status_count": 120126443, "domain_count": 81755}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png", 2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled": "languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses": true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url": {"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
@ -178,8 +178,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -221,11 +221,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '233' - '220'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -233,11 +233,11 @@ interactions:
X-Cache: X-Cache:
- MISS, HIT, HIT - MISS, HIT, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 5, 2 - 0, 5, 3
X-Served-By: X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410027-HEL - cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410021-HEL
X-Timer: X-Timer:
- S1739547501.624411,VS0,VE0 - S1739572786.244080,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -249,7 +249,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"e83f947e4236ab50c372b04653b2c955" - W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -261,13 +261,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '173' - '270'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:35:00.651194Z' - '2025-02-14T22:40:00.053698Z'
x-request-id: x-request-id:
- 65e3ef547e7f34e6712a02c124593883 - 8280556bb02fca4d6ed4a6da22529247
x-runtime: x-runtime:
- '0.266735' - '0.032541'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +113,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410025-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410028-HEL
X-Timer: X-Timer:
- S1739547501.180552,VS0,VE1 - S1739572787.808422,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 1
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410031-HEL
X-Timer:
- S1739572787.196270,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +250,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410031-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410031-HEL
X-Timer: X-Timer:
- S1739547502.566874,VS0,VE1 - S1739572787.232396,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '221'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 3
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410030-HEL
X-Timer:
- S1739572787.316258,VS0,VE0
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +240,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:47 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +248,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 2
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410027-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410030-HEL
X-Timer: X-Timer:
- S1739547502.649984,VS0,VE1 - S1739572787.348305,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:20 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +113,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 0 - 0, 0, 0
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410023-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410026-HEL
X-Timer: X-Timer:
- S1739547501.702385,VS0,VE119 - S1739572786.318154,VS0,VE84
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -56,8 +56,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -103,7 +103,7 @@ interactions:
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:39:46 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -113,9 +113,9 @@ interactions:
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 1 - 0, 0, 1
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410020-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410033-HEL
X-Timer: X-Timer:
- S1739547501.101997,VS0,VE1 - S1739572787.728518,VS0,VE1
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +127,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +139,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Wyświetl plik

@ -1,4 +1,141 @@
interactions: interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- DUMMY
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: https://mastodon.social/api/v1/instance/
response:
body:
string: '{"uri": "mastodon.social", "title": "Mastodon", "short_description":
"The original server operated by the Mastodon gGmbH non-profit", "description":
"", "email": "staff@mastodon.social", "version": "4.4.0-nightly.2025-02-07",
"urls": {"streaming_api": "wss://streaming.mastodon.social"}, "stats": {"user_count":
2522485, "status_count": 120163210, "domain_count": 81770}, "thumbnail": "https://files.mastodon.social/site_uploads/files/000/000/001/@1x/57c12f441d083cde.png",
"languages": ["en"], "registrations": true, "approval_required": false, "invites_enabled":
true, "configuration": {"accounts": {"max_featured_tags": 10}, "statuses":
{"max_characters": 500, "max_media_attachments": 4, "characters_reserved_per_url":
23}, "media_attachments": {"supported_mime_types": ["image/jpeg", "image/png",
"image/gif", "image/heic", "image/heif", "image/webp", "image/avif", "video/webm",
"video/mp4", "video/quicktime", "video/ogg", "audio/wave", "audio/wav", "audio/x-wav",
"audio/x-pn-wave", "audio/vnd.wave", "audio/ogg", "audio/vorbis", "audio/mpeg",
"audio/mp3", "audio/webm", "audio/flac", "audio/aac", "audio/m4a", "audio/x-m4a",
"audio/mp4", "audio/3gpp", "video/x-ms-asf"], "image_size_limit": 16777216,
"image_matrix_limit": 33177600, "video_size_limit": 103809024, "video_frame_rate_limit":
120, "video_matrix_limit": 8294400}, "polls": {"max_options": 4, "max_characters_per_option":
50, "min_expiration": 300, "max_expiration": 2629746}}, "contact_account":
{"id": "13179", "username": "Mastodon", "acct": "Mastodon", "display_name":
"Mastodon", "locked": false, "bot": false, "discoverable": true, "indexable":
false, "group": false, "created_at": "2016-11-23T00:00:00.000Z", "note": "<p>Free,
open-source decentralized social media platform.</p>", "url": "https://mastodon.social/@Mastodon",
"uri": "https://mastodon.social/users/Mastodon", "avatar": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837871, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
"verified_at": "2018-10-31T04:11:00.076+00:00"}, {"name": "Patreon", "value":
"<a href=\"https://patreon.com/mastodon\" target=\"_blank\" rel=\"nofollow
noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">patreon.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": null}, {"name": "GitHub", "value": "<a href=\"https://github.com/mastodon\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">github.com/mastodon</span><span class=\"invisible\"></span></a>",
"verified_at": "2023-07-21T13:27:45.996+00:00"}]}, "rules": [{"id": "1", "text":
"Sexually explicit or violent media must be marked as sensitive or with a
content warning", "hint": "This includes content that is particularly provocative
even if it may not show specific body parts, as well as dead bodies, bloody
injuries, and other gore. Particularly obscene content may be prohibited entirely.
Profile pictures and header images may not contain sexually explicit or violent
media."}, {"id": "2", "text": "No racism, sexism, homophobia, transphobia,
ableism, xenophobia, or casteism.", "hint": "Transphobic behavior such as
intentional misgendering and deadnaming is strictly prohibited. Promotion
of \"conversion therapy\" is strictly prohibited. Criticism of governments
and religions is permissible unless being used as a proxy for discrimination."},
{"id": "3", "text": "No incitement of violence or promotion of violent ideologies",
"hint": "Calling for people or groups to be assassinated, murdered, or attacked
physically is strictly prohibited. Support for violent groups or events is
prohibited."}, {"id": "4", "text": "No harassment, block evasion, dogpiling,
or doxxing of others", "hint": "Repeat attempts to communicate with users
who have blocked you or creation of accounts solely to harass or insult individuals
is strictly prohibited. Coordinated activity to attack other users is prohibited.
Posting of private personal information about others is prohibited."}, {"id":
"7", "text": "Do not share information widely-known to be false and misleading",
"hint": "False and misleading information and links from low-quality sources
may not be posted, especially if they are likely to mislead or confuse others
or endanger their safety."}, {"id": "1008", "text": "Content created by others
must be attributed, and use of generative AI must be disclosed", "hint": "Content
created by others must clearly provide a reference to the author, creator,
or source. For adult content, this should include performers. Accounts may
not solely post AI-generated content."}]}'
headers:
Accept-Ranges:
- bytes
Age:
- '247'
Connection:
- keep-alive
Date:
- Fri, 14 Feb 2025 22:40:12 GMT
Strict-Transport-Security:
- max-age=31557600
Vary:
- Accept, Origin, Accept-Encoding
X-Cache:
- MISS, HIT, HIT
X-Cache-Hits:
- 0, 5, 1
X-Served-By:
- cache-fra-eddf8230164-FRA, cache-fra-eddf8230152-FRA, cache-hel1410028-HEL
X-Timer:
- S1739572813.983530,VS0,VE1
alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
content-length:
- '5442'
content-security-policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
content-type:
- application/json; charset=utf-8
etag:
- W/"bc38a058993fdbe29400795727e9d33c"
referrer-policy:
- same-origin
via:
- 1.1 varnish, 1.1 varnish, 1.1 varnish
x-content-type-options:
- nosniff
x-frame-options:
- DENY
x-ratelimit-limit:
- '300'
x-ratelimit-remaining:
- '270'
x-ratelimit-reset:
- '2025-02-14T22:40:00.053698Z'
x-request-id:
- 8280556bb02fca4d6ed4a6da22529247
x-runtime:
- '0.032541'
x-xss-protection:
- '0'
status:
code: 200
message: OK
- request: - request:
body: null body: null
headers: headers:
@ -56,8 +193,8 @@ interactions:
"avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png", "avatar_static": "https://files.mastodon.social/accounts/avatars/000/013/179/original/b4ceb19c9c54ec7e.png",
"header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png", "header_static": "https://files.mastodon.social/accounts/headers/000/013/179/original/1375be116fbe0f1d.png",
"followers_count": 837809, "following_count": 4, "statuses_count": 288, "last_status_at": "followers_count": 837872, "following_count": 4, "statuses_count": 289, "last_status_at":
"2025-01-27", "hide_collections": false, "noindex": false, "emojis": [], "roles": "2025-02-14", "hide_collections": false, "noindex": false, "emojis": [], "roles":
[], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\" [], "fields": [{"name": "Homepage", "value": "<a href=\"https://joinmastodon.org\"
target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span target=\"_blank\" rel=\"nofollow noopener me\" translate=\"no\"><span class=\"invisible\">https://</span><span
class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>", class=\"\">joinmastodon.org</span><span class=\"invisible\"></span></a>",
@ -99,11 +236,11 @@ interactions:
Accept-Ranges: Accept-Ranges:
- bytes - bytes
Age: Age:
- '0' - '26'
Connection: Connection:
- keep-alive - keep-alive
Date: Date:
- Fri, 14 Feb 2025 15:38:21 GMT - Fri, 14 Feb 2025 22:40:13 GMT
Strict-Transport-Security: Strict-Transport-Security:
- max-age=31557600 - max-age=31557600
Vary: Vary:
@ -111,11 +248,11 @@ interactions:
X-Cache: X-Cache:
- MISS, MISS, HIT - MISS, MISS, HIT
X-Cache-Hits: X-Cache-Hits:
- 0, 0, 2 - 0, 0, 3
X-Served-By: X-Served-By:
- cache-fra-etou8220030-FRA, cache-fra-etou8220030-FRA, cache-hel1410029-HEL - cache-fra-etou8220040-FRA, cache-fra-etou8220030-FRA, cache-hel1410028-HEL
X-Timer: X-Timer:
- S1739547502.730530,VS0,VE0 - S1739572813.016271,VS0,VE0
alt-svc: alt-svc:
- h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400 - h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
cache-control: cache-control:
@ -127,7 +264,7 @@ interactions:
content-type: content-type:
- application/json; charset=utf-8 - application/json; charset=utf-8
etag: etag:
- W/"551fae2c400427901fea0abc350f319e" - W/"baea7f6f665258ec0ad4fd954447a184"
referrer-policy: referrer-policy:
- same-origin - same-origin
via: via:
@ -139,13 +276,13 @@ interactions:
x-ratelimit-limit: x-ratelimit-limit:
- '300' - '300'
x-ratelimit-remaining: x-ratelimit-remaining:
- '283' - '298'
x-ratelimit-reset: x-ratelimit-reset:
- '2025-02-14T15:40:00.797193Z' - '2025-02-14T22:40:00.379655Z'
x-request-id: x-request-id:
- d0c06378678677c73ba1d406ec7a294b - e488feea20c504741068107e2a536dd1
x-runtime: x-runtime:
- '0.024948' - '0.032660'
x-xss-protection: x-xss-protection:
- '0' - '0'
status: status:

Plik diff jest za duży Load Diff