POST /2/users/:id/bookmarks
POST /2/users/:id/bookmarks
Causes the user ID of an authenticated user identified in the path parameter to Bookmark the target Tweet provided in the request body.
Endpoint URL
https://api.x.com/2/users/:id/bookmarks
Authentication and rate limits
Authentication methods supported by this endpoint | |
---|---|
Rate limit | User rate limit (User context): 50 requests per 15-minute window per each authenticated user |
OAuth 2.0 scopes required by this endpoint
|
Learn more about OAuth 2.0 Authorization Code with PKCE |
Path parameters
Name | Type | Description |
---|---|---|
id Required | string | The user ID of an authenticated user who you are bookmarking a Tweet on behalf of. It must match your own user ID or that of an authenticating user, meaning that you must pass the Access Token associated with the user ID when authenticating your request. |
JSON body parameters
Name | Type | Description |
---|---|---|
tweet_id Required | string | The ID of the Tweet that you would like an id to Bookmark. |
Example code with offical SDKs
TypeScript
Java
Example responses
Successful response
Response fields
Name | Type | Description |
---|---|---|
bookmarked | boolean | Indicates whether the user bookmarks the specified Tweet as a result of this request. |