# Social Interactions Lookup (Followers, Following, Replies)

> Social Interactions Lookup (Followers, Following, Replies) is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Retrieves a person's social interactions — followers, accounts they follow, and/or replies — from a Twitter or LinkedIn profile URL

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/research/interactions
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-interactions-lookup-followers-following-replies-dac3e8dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EKmlHAi5bWAGwSEFkmaTx

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-interactions-lookup-followers-following-replies-dac3e8dd -d '<json body>'
```

Example prompt: Can you pull the followers and following list for twitter.com/elonmusk — give me up to 100 results for each?

## When to prefer this

Use this endpoint when you need to enumerate a specific person's social graph — their followers, the accounts they follow, or their reply activity — from a Twitter or LinkedIn URL. Prefer this over general web search when you need structured, enumerable social connection data rather than mentions or articles. Pair with the profile enrichment or recent posts endpoints on the same platform for deeper person research.

## Known failure modes

- Invalid or inaccessible profile URL returns an error or empty result
- Private/protected accounts may return no data
- Unsupported social network URL (not Twitter or LinkedIn) may fail
- Requesting too many results may hit rate or pagination limits
- Network or upstream API timeout for large accounts

## How this service works

Get a person's social interactions — followers, following, and replies

## Output

A structured list of social interaction records corresponding to the requested type (followers, following, and/or replies) for the given Twitter or LinkedIn profile, up to the specified max_results count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "enum": [
    "replies",
    "followers",
    "following",
    "followers,following"
   ],
   "type": "string"
  },
  "max_results": {
   "type": "number"
  },
  "social_media_url": {
   "type": "string",
   "format": "uri",
   "description": "Twitter or LinkedIn URL"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-interactions-lookup-followers-following-replies-dac3e8dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
