mirrored listing x402 eip155:8453eip155:196

X Account Dossier ($0

X Account Dossier ($0.05/call): Full X (Twitter) account dossier in one call: profile, an analysis of recent posts (cadence, average engagement, reply/retweet/link share, top hashtags and mentions), the raw recent posts, and a transparent bot-likelihood signal with the evidence behind it. Composes profile + activity so an agent vetting an account does not have to. No X account or API key needed.

Do you run x402.botsmith.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-10
updated

Provider

x402.botsmith.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "eip155:196",
    "payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
    "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
    "amount": "50000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "handle": "naval",
          "sampleSize": 20
        },
        "type": "http"
      },
      "output": {
        "example": {
          "activity": {
            "avgLikes": 4200,
            "avgReplies": 180,
            "avgRetweets": 610,
            "postsPerDay": 1.41,
            "replyShare": 0.15,
            "retweetShare": 0.05,
            "sampleSize": 20,
            "spanDays": 14.2,
            "topHashtags": [
              {
                "count": 3,
                "tag": "startups"
              }
            ],
            "topMentions": [
              {
                "count": 2,
                "handle": "paulg"
              }
            ],
            "withLinksShare": 0.2
          },
          "authenticity": {
            "botLikelihood": "low",
            "flags": [
              "no automation signals in profile or recent activity"
            ]
          },
          "profile": {
            "accountAgeDays": 7106,
            "bio": "Deploy capital and code.",
            "createdAt": "2007-02-01T05:44:27.000Z",
            "followers": 2900000,
            "following": 1200,
            "handle": "naval",
            "id": "745273",
            "location": null,
            "name": "Naval",
            "profileImage": "https://pbs.twimg.com/profile_images/example.jpg",
            "tweetCount": 42000,
            "url": "https://x.com/naval",
            "verified": {
              "blue": true,
              "type": null
            }
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "handle": {
                  "description": "X handle, with or without the leading @",
                  "pattern": "^@?[A-Za-z0-9_]{1,15}$",
                  "type": "string"
                },
                "sampleSize": {
                  "default": 20,
                  "description": "How many recent posts to analyze (max 20)",
                  "maximum": 20,
                  "minimum": 1,
                  "type": "integer"
                }
              },
              "required": [
                "handle",
                "sampleSize"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "additionalProperties": false,
              "properties": {
                "activity": {
                  "additionalProperties": false,
                  "properties": {
                    "avgLikes": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "avgReplies": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "avgRetweets": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "postsPerDay": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "replyShare": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "description": "Fraction of sampled posts that are replies"
                    },
                    "retweetShare": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "sampleSize": {
                      "maximum": 9007199254740991,
                      "minimum": -9007199254740991,
                      "type": "integer"
                    },
                    "spanDays": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "description": "Days between oldest and newest sampled post"
                    },
                    "topHashtags": {
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "count": {
                            "maximum": 9007199254740991,
                            "minimum": -9007199254740991,
                            "type": "integer"
                          },
                          "tag": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "tag",
                          "count"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "topMentions": {
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "count": {
                            "maximum": 9007199254740991,
                            "minimum": -9007199254740991,
                            "type": "integer"
                          },
                          "handle": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "handle",
                          "count"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "withLinksShare": {
                      "anyOf": [
                        {
                          "type": "number"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    }
                  },
                  "required": [
                    "sampleSize",
                    "spanDays",
                    "postsPerDay",
                    "avgLikes",
                    "avgRetweets",
                    "avgReplies",
                    "replyShare",
                    "retweetShare",
                    "withLinksShare",
                    "topHashtags",
                    "topMentions"
                  ],
                  "type": "object"
                },
                "authenticity": {
                  "additionalProperties": false,
                  "properties": {
                    "botLikelihood": {
                      "enum": [
                        "low",
                        "medium",
                        "high",
                        "unknown"
                      ],
                      "type": "string"
                    },
                    "flags": {
                      "description": "Transparent evidence behind the signal",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "botLikelihood",
                    "flags"
                  ],
                  "type": "object"
                },
                "profile": {
                  "additionalProperties": false,
                  "properties": {
                    "accountAgeDays": {
                      "anyOf": [
                        {
                          "maximum": 9007199254740991,
                          "minimum": -9007199254740991,
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "bio": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "createdAt": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "description": "ISO 8601 account creation time"
                    },
                    "followers": {
                      "anyOf": [
                        {
                          "maximum": 9007199254740991,
                          "minimum": -9007199254740991,
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "following": {
                      "anyOf": [
                        {
                          "maximum": 9007199254740991,
                          "minimum": -9007199254740991,
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "handle": {
                      "type": "string"
                    },
                    "id": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "location": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "name": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profileImage": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "tweetCount": {
                      "anyOf": [
                        {
                          "maximum": 9007199254740991,
                          "minimum": -9007199254740991,
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "url": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "verified": {
                      "additionalProperties": false,
                      "properties": {
                        "blue": {
                          "type": "boolean"
                        },
                        "type": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "required": [
                        "blue",
                        "type"
                      ],
                      "type": "object"
                    }
                  },
                  "required": [
                    "handle",
                    "id",
                    "name",
                    "bio",
                    "url",
                    "location",
                    "profileImage",
                    "verified",
                    "followers",
                    "following",
                    "tweetCount",
                    "createdAt",
                    "accountAgeDays"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "profile",
                "activity",
                "authenticity"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://x402.botsmith.dev/x/dossier"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://x402.botsmith.dev/x/dossier");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://x402.botsmith.dev/x/dossier")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/489.json, and this resource appears in /discovery/resources and /discovery/search.