Details
GET
/tw-v2/list/detailsDescription
Get detailed information about a specific Twitter list including metadata, member count, and configuration settings.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| listId | string | required | Unique Twitter list ID |
Code Examples
const params = new URLSearchParams({
listId: '1234567890'
});
const response = await fetch(`https://api.tweetapi.com/tw-v2/list/details?${params}`, {
method: 'GET',
headers: {
'X-API-Key': 'YOUR_API_KEY'
}
});
const data = await response.json();
console.log(data);
Response
Success Response (200 OK)
200
{
"data": {
"id": "1542698905229373441",
"name": "Apple News 🍏",
"description": "All the news about Apple products to anticipate new opportunities in this market.",
"mode": "public",
"memberCount": 42,
"subscriberCount": 2362,
"createdAt": "2022-07-01T02:37:35.000Z",
"owner": {
"id": "1238631700177059846",
"username": "KwentinVII",
"name": "Kwentin",
"bio": "🇫🇷🇷🇪",
"location": null,
"website": null,
"pinnedTweetIds": [
"1302807018940424193"
],
"avatar": "https://pbs.twimg.com/profile_images/1853031866196201473/ng6tskiT_400x400.jpg",
"banner": "https://pbs.twimg.com/profile_banners/1238631700177059846/1706620257/1500x500",
"profileImageShape": "Circle",
"verified": false,
"isBlueVerified": false,
"verifiedType": null,
"verifiedSince": null,
"isIdentityVerified": false,
"isProtected": false,
"possiblySensitive": false,
"profileInterstitialType": null,
"withheldInCountries": [],
"professional": null,
"businessAccount": null,
"creatorSubscriptionsCount": 0,
"hasHiddenSubscriptions": false,
"highlightsInfo": null,
"hasGraduatedAccess": true,
"isProfileTranslatable": false,
"hasCustomTimelines": true,
"isTranslator": false,
"affiliatesHighlightedLabel": {},
"defaultProfile": true,
"defaultProfileImage": false,
"followerCount": 66,
"followingCount": 334,
"tweetCount": 1477,
"listedCount": 0,
"mediaCount": 19,
"favoritesCount": 59316,
"createdAt": "2020-03-14T01:03:23.000Z"
},
"bannerUrl": null,
"defaultBannerMedia": null,
"facepileUrls": [
"https://pbs.twimg.com/profile_images/1269561278663741440/KLZyrXw4_mini.jpg",
"https://pbs.twimg.com/profile_images/1472779969365520386/KHHfOp1f_mini.jpg",
"https://pbs.twimg.com/profile_images/2257717007/image_mini.jpg"
],
"slug": "",
"uri": ""
}
}API Playground
GET
/tw-v2/list/detailsPress ⌘ + Enter to execute
curl -X GET "https://api.tweetapi.com/tw-v2/list/details" \
-H "X-API-Key: YOUR_API_KEY"Response
Click "Try It!" to see the response