# Vaaya Person Interactions

> Vaaya Person Interactions is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

Fetches social media interactions for a person — replies, followers, or following — given a profile URL or username

## Facts

- Endpoint: POST https://vaaya.ai/api/run/nyne/person-interactions
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaaya-person-interactions-d37c6ca6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Mm5N1NLwJHtvSLpYJmxD

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 vaaya-person-interactions-d37c6ca6 -d '<json body>'
```

Example prompt: Can you pull the followers and following for the Twitter profile at https://twitter.com/elonmusk — get up to 100 results?

## When to prefer this

Use this endpoint when you need to programmatically retrieve social interaction data — followers, following, or replies — for a specific social media profile or tweet, without managing your own Twitter API credentials or OAuth flows. It is ideal for agent-driven contact enrichment, audience research, competitive analysis, and outreach automation workflows where social graph data is needed on demand.

## Known failure modes

- Invalid or inaccessible social_media_url returns an error
- Tweet ID not found or deleted returns empty or error response
- max_results below minimum (10) or above maximum (1000) causes validation failure
- Rate limits on the underlying social platform may throttle or block responses
- Private or protected accounts may return no data
- Malformed URL format causes schema validation rejection

## How this service works

Give an AI agent a credit account. Set a limit and a spending policy, and the agent makes approved, metered purchases from providers that accept Vaaya.

## Output

Returns a structured list of social media interactions — followers, accounts being followed, or tweet replies — associated with the given profile URL or tweet. Each result typically includes user profile data such as usernames, display names, and profile metadata for followers/following, or reply content for tweet replies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "social_media_url",
      "type"
     ],
     "properties": {
      "type": {
       "enum": [
        "replies",
        "followers",
        "following",
        "followers,following"
       ],
       "type": "string"
      },
      "tweet_id": {
       "type": "string",
       "maxLength": 25
      },
      "username": {
       "type": "string",
       "maxLength": 100
      },
      "max_results": {
       "type": "integer",
       "maximum": 1000,
       "minimum": 10
      },
      "social_media_url": {
       "type": "string",
       "format": "uri"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaaya-person-interactions-d37c6ca6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
