GET
/
2
/
users
/
{id}
/
bookmarks
/
folders
/
{folder_id}
curl --request GET \
  --url https://api.twitter.com/2/users/{id}/bookmarks/folders/{folder_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1346889436626259968"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

The ID of the authenticated source User for whom to return results.

Example:

"2244994945"

folder_id
string
required

The ID of the Bookmark Folder that the authenticated User is trying to fetch Posts for.

Example:

"1146654567674912769"

Response

200
application/json

The request has succeeded.

The response is of type object.