/api/wallets//social
Description: Fetch social media links, profile name, and image URL for a specific wallet address tracked by CabalSpy. Replace `
` with the wallet address (e.g., `5TuiERc4X7EgZTxNmj8PHgzUAfNHZRLYHKp4DuiWevXv`). This is useful for identifying influential wallets and accessing their public profiles for trading or networking purposes. Each request costs 10 usage points.- • Required Parameter: `api_key` – Your unique API Key (e.g., `?api_key=YOUR_API_KEY`).
- Usage Cost: Each request deducts 10 usage points, regardless of the `limit` parameter.
- Response Format: Returns a JSON object with `name`, `telegram`, `twitter`, `copytrade_link`, and `image_url` if available, or an error if the wallet isn’t found.
Example Request:
curl "http://82.29.177.109:8080/api/wallets/5TuiERc4X7EgZTxNmj8PHgzUAfNHZRLYHKp4DuiWevXv/social?api_key=YOUR_API_KEY"
Example Response:
{
"name": "TraderX",
"telegram": "t.me/TraderX",
"twitter": "twitter.com/TraderX",
"copytrade_link": "copytrade.com/TraderX",
"image_url": "https://example.com/traderx.jpg"
}