Skip to main content
GET
/
gateway
/
v1
/
social
/
user
/
replies
User Replies
curl --request GET \
  --url https://api.ask.surf/gateway/v1/social/user/replies
{
  "data": [
    {
      "author": {
        "handle": "<string>",
        "name": "<string>",
        "user_id": "<string>",
        "avatar": "<string>"
      },
      "created_at": 123,
      "stats": {
        "likes": 123,
        "replies": 123,
        "reposts": 123,
        "views": 123
      },
      "text": "<string>",
      "tweet_id": "<string>",
      "url": "<string>",
      "media": [
        {
          "type": "<string>",
          "url": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "has_more": true,
    "limit": 123,
    "next_cursor": "<string>"
  },
  "$schema": "<string>"
}

Query Parameters

handle
string
required

X (Twitter) username without @ like vitalikbuterin or cz_binance

Example:

"vitalikbuterin"

limit
integer<int64>
default:20

Max results to return

Required range: 1 <= x <= 100
Example:

20

cursor
string

Opaque cursor token from a previous response's next_cursor field for fetching the next page

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/CursorDataResponseXTweet.json"