# agentutility — paid x402 endpoints for autonomous agents

> agentutility — paid x402 endpoints for autonomous agents is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

## Facts

- Endpoint: POST https://x402.agentutility.ai/social-profile-pack
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-profile-pack-748b338c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Kl7QQTG0tfrhgNAloqPt

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-profile-pack-748b338c -d '<json body>'
```

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## 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": {
     "properties": {
      "username": {
       "type": "string",
       "description": "X/Twitter handle, with or without @, e.g. 'bankrbot'."
      },
      "max_tweets": {
       "type": "number",
       "description": "Recent posts to fetch. Clamped to 5-50. Default 10."
      }
     },
     "required": [
      "username"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "username": {
       "type": "string"
      },
      "profile": {
       "type": "object",
       "properties": {
        "user": {
         "type": "object",
         "properties": {
          "username": {
           "type": "string"
          },
          "public_metrics": {
           "type": "object",
           "properties": {
            "followers_count": {
             "type": "integer"
            }
           }
          }
         }
        }
       }
      },
      "tweets": {
       "type": "object",
       "properties": {
        "result_count": {
         "type": "integer"
        },
        "tweets": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "id": {
            "type": "string"
           },
           "text": {
            "type": "string"
           }
          }
         }
        }
       }
      },
      "sentiment": {
       "type": "object",
       "properties": {
        "overall_sentiment": {
         "type": "string"
        },
        "average_score": {
         "type": "number"
        },
        "distribution": {
         "type": "object",
         "properties": {
          "positive": {
           "type": "integer"
          },
          "neutral": {
           "type": "integer"
          },
          "negative": {
           "type": "integer"
          }
         }
        }
       }
      },
      "composed_of": {
       "
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tweets": {
   "tweets": [
    {
     "id": "123",
     "text": "x402 payments are live"
    }
   ],
   "result_count": 10
  },
  "profile": {
   "user": {
    "username": "bankrbot",
    "public_metrics": {
     "followers_count": 1234
    }
   }
  },
  "degraded": false,
  "username": "bankrbot",
  "sentiment": {
   "distribution": {
    "neutral": 5,
    "negative": 1,
    "positive": 4
   },
   "average_score": 0.22,
   "overall_sentiment": "positive"
  },
  "components": [
   {
    "ms": 540,
    "ok": true,
    "name": "twitter-user-lookup"
   },
   {
    "ms": 780,
    "ok": true,
    "name": "user-tweets"
   }
  ],
  "composed_of": [
   "twitter-user-lookup",
   "user-tweets",
   "twitter-sentiment"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-profile-pack-748b338c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
