action transitfeeds_get_feeds { label: "Retrieve a list of feeds." description: "Used this API to retrieve a list of feeds in the system. Doing so can be usedful to discover feed IDs that\ncan be used in other API calls.\n" provider: transitfeeds method: GET path: "/getFeeds" encoding: json input: { type: "object" properties: { descendants: { type: "string" } key: { type: "string" } limit: { type: "string" } location: { type: "string" } page: { type: "string" } type: { type: "string" } } required: ["key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }