RSS3 Documentation

Retrieve Federated Activity by ID (Beta)

This endpoint retrieves the details of a specified federated activity by its ID. You can also specify additional query parameters to limit the number of actions retrieved and to paginate through actions.

GET
/federated/tx/{id}
/federated/tx/{id}

Path Parameters

id
Required
string

Retrieve details for the specified federated activity ID

Query Parameters

action_limitinteger

Specify the number of actions within the activity to retrieve

Default: 50Minimum: 1Maximum: 100

action_pageinteger

Specify the pagination for actions

Default: 1Minimum: 1
curl -X GET "https://gi.rss3.io/federated/tx/string?action_limit=50&action_page=1"

A successful response containing the details of the specified federated activity. The response includes the activity ID, timestamp, and a list of actions performed within the activity.

{
  "data": {
    "id": "https://universeodon.com/users/woofers/statuses/113324128515491294/activity",
    "owner": "@georgetakei@universeodon.com",
    "network": "mastodon",
    "from": "@woofers@universeodon.com",
    "to": "@georgetakei@universeodon.com",
    "index": 0,
    "platform": "Mastodon",
    "success": true,
    "tag": "social",
    "type": "comment",
    "direction": "out",
    "timestamp": 1729188972,
    "total_actions": 1,
    "actions": [
      {
        "tag": "social",
        "type": "comment",
        "platform": "Mastodon",
        "from": "@woofers@universeodon.com",
        "to": "@georgetakei@universeodon.com",
        "metadata": {
          "handle": "@woofers@universeodon.com",
          "body": "@ georgetakei ( https://universeodon.com/@georgetakei ) now hold on just a minute...\n\n# woof ( https://universeodon.com/tags/woof )",
          "publication_id": "113324128515491294",
          "tags": [
            "@georgetakei",
            "#woof"
          ],
          "author_url": "https://universeodon.com/users/woofers",
          "timestamp": 1729188972,
          "target": {
            "handle": "@georgetakei@universeodon.com",
            "body": "Just a little treat.",
            "media": [
              {
                "address": "https://media.universeodon.com/media_attachments/files/113/319/346/314/075/495/original/26e989bcf15840a6.png",
                "mime_type": "image/png"
              }
            ],
            "publication_id": "113319346448373294",
            "author_url": "https://universeodon.com/users/georgetakei",
            "timestamp": 1729116004
          },
          "target_url": "https://universeodon.com/users/georgetakei/statuses/113319346448373294"
        },
        "related_urls": [
          "https://universeodon.com/users/woofers/statuses/113324128515491294"
        ]
      }
    ]
  },
  "meta": {
    "totalPages": 1
  }
}