# Social Media Interactions Async Retrieval

> Social Media Interactions Async Retrieval is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.219/call, status unknown (last checked 2026-09-14).

Asynchronously retrieves social media interactions (e.g., likes, comments, reposts) for a given social media post URL.

## Facts

- Endpoint: POST https://x402.orthogonal.com/nyne/person/interactions
- Price: $0.219/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-media-interactions-async-retrieval-01725e05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sm_qpFKxztvYoWrjtk9-u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability social-media-interactions-async-retrieval-01725e05 -d '<json body>'
```

Example prompt: Can you pull all the comments and likes on this tweet — https://twitter.com/elonmusk/status/123456789 — using the interactions type 'comments'?

## When to prefer this

Use this endpoint when you need to programmatically retrieve interaction data (likes, comments, reposts) from a social media post URL in an async manner, particularly when the volume of interactions is large enough to require background processing. Prefer this over synchronous scrapers when handling high-engagement posts or when you need structured interaction types rather than raw HTML.

## Known failure modes

- Invalid or inaccessible social_media_url returns an error
- Missing required 'type' parameter causes a validation error
- Rate limits or platform blocks may cause retrieval failures
- Async job may time out for posts with very high interaction counts
- Private or deleted posts return empty or error responses

## How this service works

Start async retrieval of social media interactions. Requires social_media_url and type.

## Output

Returns an async job reference or interaction data including social media engagements such as likes, comments, reposts, and replies associated with the specified post URL, keyed by interaction type.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "type": {
       "type": "string",
       "description": "Interaction type: replies, followers, following, or followers,following"
      },
      "social_media_url": {
       "type": "string",
       "description": "Twitter/X or Instagram profile or post URL"
      },
      "max_results": {
       "type": "integer",
       "description": "Maximum results to return (default: 100, max: 1000)"
      },
      "callback_url": {
       "type": "string",
       "description": "URL to receive results via webhook"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-media-interactions-async-retrieval-01725e05/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
