GET projects¶
This endpoint requires special permission to access and is only available for TV broadcast use cases. To request access please visit curator.twitter.com.
Returns a list of existing projects available to the user.
Resource URL¶
https://curator.twitter.com/broadcast/1/projects
Resource Information¶
| Response formats | JSON, XML |
| Requires authentication? | Yes |
| Rate limited? | Yes |
| Requests / 15-min window (user auth) | 900 |
| Requests / 15-min window (app auth) | 900 |
Parameters¶
| Name | Required | Description | Default Value | Example |
| limit | optional | The number of elements to return. Defaults to 500 if not specified. | ||
| format | optional | The output format request. This param can be either json or xml . It will default to json . | ||
| auth | required | Auth token for user. |
Example Request¶
GET https://curator.twitter.com/broadcast/1/projects?auth=<auth_token>&limit=25
Example Response¶
{
status: {
message: "OK",
code: 200
},
data: [
{
id: 123,
title: "Funny Animals"
},
{
id: 456,
title: "My TV Shows"
},
{
id: 789,
title: "America's Funniest Home Videos"
}
]
}