x-api

Look up X/Twitter user profiles via BlockRun's API. Trigger when the user asks to look up, find, or get info about X/Twitter users or handles.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "x-api" with this command: npx skills add blockrunai/clawrouter/blockrunai-clawrouter-x-api

X/Twitter User Lookup

Look up X/Twitter user profiles — follower counts, bio, verified status — in one call. Payment is automatic via x402.

How to Look Up Users

POST to http://localhost:8402/v1/x/users/lookup:

{
  "usernames": ["elonmusk", "sama", "vitalikbuterin"]
}

Also accepts a comma-separated string:

{
  "usernames": "elonmusk, sama, vitalikbuterin"
}
  • @ prefix is stripped automatically
  • Duplicates removed, normalized to lowercase
  • Max 100 users per request

Response

{
  "users": [
    {
      "id": "44196397",
      "userName": "elonmusk",
      "name": "Elon Musk",
      "profilePicture": "https://pbs.twimg.com/...",
      "description": "Bio text here",
      "followers": 219000000,
      "following": 1234,
      "isBlueVerified": true,
      "verifiedType": "blue",
      "location": "Texas, USA",
      "joined": "2009-06-02T20:12:29.000Z"
    }
  ],
  "not_found": ["unknownuser123"],
  "total_requested": 3,
  "total_found": 2
}

Pricing

Batch sizeCost
1–10 users$0.01 (minimum)
11–100 users$0.001 per user
100+ users$0.10 (capped at first 100)

Example Interactions

User: What are the follower counts for elonmusk and naval?

→ POST with ["elonmusk", "naval"], show follower counts from response.

User: Look up these crypto influencers: vitalikbuterin, sassal0x, jessepollak

→ POST with the array, display a table with name, followers, verified status, bio.

User: Find info about @pmarca

→ POST with ["pmarca"] (strip @ automatically), display profile.

Notes

  • Payment is automatic via x402 — deducted from the user's BlockRun wallet
  • If the call fails with a payment error, tell the user to fund their wallet at blockrun.ai
  • Rate limit: 20 requests per hour
  • Users in not_found were not charged — only found users count toward the bill
  • Data is real-time from X/Twitter via AttentionVC

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

clawrouter

No summary provided by upstream source.

Repository SourceNeeds Review
General

release

No summary provided by upstream source.

Repository SourceNeeds Review
General

imagegen

No summary provided by upstream source.

Repository SourceNeeds Review
General

x-api

No summary provided by upstream source.

Repository SourceNeeds Review