{
  "x402Version": 2,
  "id": 489,
  "slug": "489",
  "resource": "https://x402.botsmith.dev/x/dossier",
  "description": "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.",
  "type": "http",
  "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
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402.botsmith.dev",
  "lastUpdated": "2026-09-10T06:31:48.125Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-10T06:31:47.217Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402.botsmith.dev",
    "manifest_name": "x402.botsmith.dev",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}