Query parameters
-
The maximum number of results
Minimum value is
1
, maximum value is100
. Default value is100
. -
This parameter is used to get a specified 'page' of results.
-
A comma separated list of List fields to display.
-
A comma separated list of fields to expand.
-
A comma separated list of User fields to display.
GET
/2/users/{id}/owned_lists
curl \
-X GET https://api.twitter.com/2/users/2244994945/owned_lists \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": "1146654567674912769",
"name": "string",
"created_at": "2023-05-04T09:42:00+00:00",
"description": "string",
"follower_count": 42,
"member_count": 42,
"owner_id": "2244994945",
"private": true
}
],
"includes": {
"users": [
{
"id": "2244994945",
"created_at": "2013-12-14T04:35:55Z",
"name": "Twitter Dev",
"username": "TwitterDev",
"protected": false
}
]
},
"meta": {
"previous_token": "string",
"next_token": "string",
"result_count": 42
},
"errors": [
{
"type": "string",
"title": "string",
"detail": "string",
"status": 42
}
]
}
Response examples (200)
{
"data": [
{
"id": "1146654567674912769",
"name": "string",
"created_at": "2025-05-04T09:42:00Z",
"description": "string",
"follower_count": 42,
"member_count": 42,
"owner_id": "2244994945",
"private": true
}
],
"includes": {
"users": [
{
"id": "2244994945",
"name": "Twitter Dev",
"username": "TwitterDev",
"protected": false,
"created_at": "2013-12-14T04:35:55Z"
}
]
},
"meta": {
"previous_token": "string",
"next_token": "string",
"result_count": 42
},
"errors": [
{
"type": "string",
"title": "string",
"detail": "string",
"status": 42
}
]
}
Response examples (default)
{
"code": 42,
"message": "string"
}
Response examples (default)
{
"code": 42,
"message": "string"
}