TwitterAPIs Docs
API ReferenceUser Reads

User Mentions

Return the tweets that mention a given account, cursor-paginated. This is the canonical way to read a handle's mentions; it is a thin wrapper over a to:username search and returns the same tweet objects. Cost: $0.0008 per call.

GET
/user/mentions

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

username*string

Handle without the leading @ to find mentions of.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/user/mentions?username=twitterapis"
{  "tweets": [    {      "id": "1759555444333222111",      "text": "@twitterapis just shipped great docs.",      "author": {        "id": "9921",        "username": "devjane"      }    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}