The Wayback Machine - https://web.archive.org/web/20150911223318/https://dev.twitter.com/rest/reference/get/projects

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

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.

OAuth Signature Generator

Sign in to see a list of your registered applications.

Example Request

GET

https://curator.twitter.com/broadcast/1/projects?auth=<auth_token>&limit=25

Example Result

{
  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"
    }
  ]
}