A small tool to view real-world ActivityPub objects as JSON! Enter a URL
or username from Mastodon or a similar service below, and we'll send a
request with
the right
Accept
header
to the server to view the underlying object.
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"ostatus": "http://ostatus.org#",
"atomUri": "ostatus:atomUri",
"inReplyToAtomUri": "ostatus:inReplyToAtomUri",
"conversation": "ostatus:conversation",
"sensitive": "as:sensitive",
"toot": "http://joinmastodon.org/ns#",
"votersCount": "toot:votersCount",
"blurhash": "toot:blurhash",
"focalPoint": {
"@container": "@list",
"@id": "toot:focalPoint"
},
"Hashtag": "as:Hashtag"
}
],
"id": "https://mastodon.social/users/anatudor/statuses/112554275734807395",
"type": "Note",
"summary": null,
"inReplyTo": "https://mastodon.social/users/anatudor/statuses/112554194920113197",
"published": "2024-06-03T19:12:31Z",
"url": "https://mastodon.social/@anatudor/112554275734807395",
"attributedTo": "https://mastodon.social/users/anatudor",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"cc": [
"https://mastodon.social/users/anatudor/followers"
],
"sensitive": false,
"atomUri": "https://mastodon.social/users/anatudor/statuses/112554275734807395",
"inReplyToAtomUri": "https://mastodon.social/users/anatudor/statuses/112554194920113197",
"conversation": "tag:mastodon.social,2024-06-03:objectId=721568396:objectType=Conversation",
"content": "<p>We ensure there's always a scrollbar by making the body taller than the viewport.</p><p>We give the text container `position: fixed` so it doesn't scroll with the page.</p><p>Within this, we wrap the entire text in a `span` (in an `inline` element). This is important for the next step...</p><p><a href=\"https://mastodon.social/tags/CSS\" class=\"mention hashtag\" rel=\"tag\">#<span>CSS</span></a> <a href=\"https://mastodon.social/tags/pureCSS\" class=\"mention hashtag\" rel=\"tag\">#<span>pureCSS</span></a> <a href=\"https://mastodon.social/tags/noJS\" class=\"mention hashtag\" rel=\"tag\">#<span>noJS</span></a> <a href=\"https://mastodon.social/tags/scroll\" class=\"mention hashtag\" rel=\"tag\">#<span>scroll</span></a> <a href=\"https://mastodon.social/tags/scrollAnimation\" class=\"mention hashtag\" rel=\"tag\">#<span>scrollAnimation</span></a> <a href=\"https://mastodon.social/tags/text\" class=\"mention hashtag\" rel=\"tag\">#<span>text</span></a> <a href=\"https://mastodon.social/tags/textEffect\" class=\"mention hashtag\" rel=\"tag\">#<span>textEffect</span></a> <a href=\"https://mastodon.social/tags/revealEffect\" class=\"mention hashtag\" rel=\"tag\">#<span>revealEffect</span></a> <a href=\"https://mastodon.social/tags/code\" class=\"mention hashtag\" rel=\"tag\">#<span>code</span></a> <a href=\"https://mastodon.social/tags/coding\" class=\"mention hashtag\" rel=\"tag\">#<span>coding</span></a> <a href=\"https://mastodon.social/tags/frontend\" class=\"mention hashtag\" rel=\"tag\">#<span>frontend</span></a> <a href=\"https://mastodon.social/tags/webDev\" class=\"mention hashtag\" rel=\"tag\">#<span>webDev</span></a> <a href=\"https://mastodon.social/tags/web\" class=\"mention hashtag\" rel=\"tag\">#<span>web</span></a> <a href=\"https://mastodon.social/tags/webDevelopment\" class=\"mention hashtag\" rel=\"tag\">#<span>webDevelopment</span></a> <a href=\"https://mastodon.social/tags/dev\" class=\"mention hashtag\" rel=\"tag\">#<span>dev</span></a></p>",
"contentMap": {
"en": "<p>We ensure there's always a scrollbar by making the body taller than the viewport.</p><p>We give the text container `position: fixed` so it doesn't scroll with the page.</p><p>Within this, we wrap the entire text in a `span` (in an `inline` element). This is important for the next step...</p><p><a href=\"https://mastodon.social/tags/CSS\" class=\"mention hashtag\" rel=\"tag\">#<span>CSS</span></a> <a href=\"https://mastodon.social/tags/pureCSS\" class=\"mention hashtag\" rel=\"tag\">#<span>pureCSS</span></a> <a href=\"https://mastodon.social/tags/noJS\" class=\"mention hashtag\" rel=\"tag\">#<span>noJS</span></a> <a href=\"https://mastodon.social/tags/scroll\" class=\"mention hashtag\" rel=\"tag\">#<span>scroll</span></a> <a href=\"https://mastodon.social/tags/scrollAnimation\" class=\"mention hashtag\" rel=\"tag\">#<span>scrollAnimation</span></a> <a href=\"https://mastodon.social/tags/text\" class=\"mention hashtag\" rel=\"tag\">#<span>text</span></a> <a href=\"https://mastodon.social/tags/textEffect\" class=\"mention hashtag\" rel=\"tag\">#<span>textEffect</span></a> <a href=\"https://mastodon.social/tags/revealEffect\" class=\"mention hashtag\" rel=\"tag\">#<span>revealEffect</span></a> <a href=\"https://mastodon.social/tags/code\" class=\"mention hashtag\" rel=\"tag\">#<span>code</span></a> <a href=\"https://mastodon.social/tags/coding\" class=\"mention hashtag\" rel=\"tag\">#<span>coding</span></a> <a href=\"https://mastodon.social/tags/frontend\" class=\"mention hashtag\" rel=\"tag\">#<span>frontend</span></a> <a href=\"https://mastodon.social/tags/webDev\" class=\"mention hashtag\" rel=\"tag\">#<span>webDev</span></a> <a href=\"https://mastodon.social/tags/web\" class=\"mention hashtag\" rel=\"tag\">#<span>web</span></a> <a href=\"https://mastodon.social/tags/webDevelopment\" class=\"mention hashtag\" rel=\"tag\">#<span>webDevelopment</span></a> <a href=\"https://mastodon.social/tags/dev\" class=\"mention hashtag\" rel=\"tag\">#<span>dev</span></a></p>"
},
"attachment": [
{
"type": "Document",
"mediaType": "image/png",
"url": "https://files.mastodon.social/media_attachments/files/112/554/228/855/931/769/original/21601452ac4ac849.png",
"name": "/* ensure we always have a scrollbar by making \n * the body taller than the viewport height */\nbody { height: 500vh }\n\nh1 {\n\t/* ensure it doesn't move with scroll */\n\tposition: fixed;\n\t/* and that it's in the middle */\n\ttop: 50%; left: 50%;\n\ttransform: translate(-50%, -50%);\n\t/* and doesn't exceed a certain width */\n\twidth: min(90%, 23em);\n\t/* and font scales with viewport, but within limits */\n\tfont: clamp(.625em, 5vw, 4em) fira code, monospace\n}",
"blurhash": "U15Evy^,NHJB9woes+s.oeIoj=xZ%NxaNHNI",
"focalPoint": [
0,
0
],
"width": 498,
"height": 326
}
],
"tag": [
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/css",
"name": "#css"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/purecss",
"name": "#purecss"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/nojs",
"name": "#nojs"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/scroll",
"name": "#scroll"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/scrollanimation",
"name": "#scrollanimation"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/text",
"name": "#text"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/texteffect",
"name": "#texteffect"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/revealeffect",
"name": "#revealeffect"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/code",
"name": "#code"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/coding",
"name": "#coding"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/frontend",
"name": "#frontend"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/webdev",
"name": "#webdev"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/web",
"name": "#web"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/webdevelopment",
"name": "#webdevelopment"
},
{
"type": "Hashtag",
"href": "https://mastodon.social/tags/dev",
"name": "#dev"
}
],
"replies": {
"id": "https://mastodon.social/users/anatudor/statuses/112554275734807395/replies",
"type": "Collection",
"first": {
"type": "CollectionPage",
"next": "https://mastodon.social/users/anatudor/statuses/112554275734807395/replies?min_id=112554307502249402&page=true",
"partOf": "https://mastodon.social/users/anatudor/statuses/112554275734807395/replies",
"items": [
"https://mastodon.social/users/anatudor/statuses/112554307502249402"
]
}
},
"likes": {
"id": "https://mastodon.social/users/anatudor/statuses/112554275734807395/likes",
"type": "Collection",
"totalItems": 1
},
"shares": {
"id": "https://mastodon.social/users/anatudor/statuses/112554275734807395/shares",
"type": "Collection",
"totalItems": 0
}
}