mention - User by ID
Returns Tweets mentioning a single user specified by the requested user ID. By default, the most recent ten Tweets are returned per request. Using pagination, up to the most recent 800 Tweets can be retrieved.
rate limits

GET
https://us-central1-appgregator.cloudfunctions.net/twitter/timelines/tweet/user-mention/
Query Parameters
Name
Type
Description
name*
String
qantor.co.id
connection_name*
String
twitter-1
id*
String
1541307718920572928
pagination_token
String
7140dibdnow9c7btw4228a6rl7f3tcwh7rsjcxdo1h261
Headers
Name
Type
Description
x-api-key*
String
43c464439b5507293ba7b315c9875907
{
"data": [
{
"id": "1542718751119925250",
"text": "testing appgregator api service @RonaldAdrs"
},
{
"id": "1542711952145018880",
"text": "testing appgregator apis @RonaldAdrs"
},
{
"id": "1542711843378331648",
"text": "hallo from bot appgregator apis @RonaldAdrs"
},
{
"id": "1542709708250685440",
"text": "status bots @RonaldAdrs"
},
{
"id": "1542706793469845504",
"text": "status bot @RonaldAdrs"
},
{
"id": "1542700215173812224",
"text": "tesLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. @RonaldAdrs"
},
{
"id": "1542699990039941122",
"text": "hallo from bot appgregator api @RonaldAdrs"
},
{
"id": "1542698875311378432",
"text": "hallo from bot api @RonaldAdrs"
},
{
"id": "1542545509554204672",
"text": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. @RonaldAdrs"
},
{
"id": "1542542475302432769",
"text": "Hello World!... @RonaldAdrs"
}
],
"meta": {
"next_token": "7140dibdnow9c7btw4228a6rl7f3tcwh7rsjcxdo1h261",
"result_count": 10,
"newest_id": "1542718751119925250",
"oldest_id": "1542542475302432769"
}
}
curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/twitter/timelines/tweet/user-mention?name=qantor.co.id&connection_name=twitter-1&id=1541307718920572928' \
--header 'x-api-key: 43c464439b5507293ba7b315c9875907'
Last updated