Manage account settings and profile
API Reference contents
GET account/settings
GET account/verify_credentials
GET users/profile_banner
POST account/remove_profile_banner
POST account/settings
POST account/update_profile
POST account/update_profile_banner
POST account/update_profile_image
GET saved_searches/list
GET saved_searches/show/:id
POST saved_searches/create
POST saved_searches/destroy/:id
POST account/update_profile_background_image (deprecated)
GET saved_searches/list¶
Returns the authenticated user’s saved search queries.
Resource URL¶
https://api.twitter.com/1.1/saved_searches/list.json
Resource Information¶
Response formats | JSON |
Requires authentication? | Yes (user context only) |
Rate limited? | Yes |
Requests / 15-min window (user auth) | 15 |
Parameters¶
None
Example Request¶
GET https://api.twitter.com/1.1/saved_searches/list.json
Example Response¶
[
{
"created_at": "Tue Jun 15 09:37:24 +0000 2010",
"id": 9569704,
"id_str": "9569704",
"name": "@twitterapi",
"position": null,
"query": "@twitterapi"
},
{
"created_at": "Tue Jun 15 09:38:04 +0000 2010",
"id": 9569730,
"id_str": "9569730",
"name": "@twitter OR twitterapi OR "twitter api" OR "@anywhere"",
"position": null,
"query": "@twitter OR twitterapi OR "twitter api" OR "@anywhere""
}
]