TA
TransitFeeds API
/getFeedVersions
Retrieve a list of versions of specified (or all) feeds.
This API call allows you to easily see every single feed update in the TranstiFeeds.com system. Since this can be quite long, it's also possible to filter this list by a single feed ID.
liveunknown~3s typical
transitfeeds
$Set up https://cracked-ai-pearl.vercel.app/SKILL.md, then use Cracked to run oa-transitfeeds-com /getFeedVersions for me.
Input
| Field | Type | Description |
|---|---|---|
| key* | string | Your personal API key, used for authentication. default "YOUR_API_KEY" |
| feed | string | If you only want to retrieve feed versions for a particular feed, include its ID here. You can use the `/getFeeds` call to discover feed IDs. default null |
| page | integer | The page number of results to return. For example, if you specify a `page` of `2` with a `limit` of 10, then results 11-20 are returned. The number of pages available is included in the response. default 1 |
| limit | integer | The maximum number of results to return.. default 10 |
| err | integer (0 | 1) | To include any errors detected when importing this feed in the response, specify a valud of `1`. default 1 |
| warn | integer (0 | 1) | To include any warnings detected when importing this feed in the response, specify a valud of `1`. default 1 |
Call it
curl
curl https://cracked-ai-pearl.vercel.app/v1/run \
-H "Authorization: Bearer ck_live_..." -H "content-type: application/json" \
-d '{"provider":"oa-transitfeeds-com","endpoint":"/getFeedVersions","input":{"key":"YOUR_API_KEY","feed":"...","page":1,"limit":10,"err":1,"warn":1}}'cli
npx cracked-ai run -p oa-transitfeeds-com -e /getFeedVersions -i '{"key":"YOUR_API_KEY","feed":"...","page":1,"limit":10,"err":1,"warn":1}'mcp
run_tool({ provider: "oa-transitfeeds-com", endpoint: "/getFeedVersions", input: {"key":"YOUR_API_KEY","feed":"...","page":1,"limit":10,"err":1,"warn":1} })Try it
Runs against your signed-in workspace balance. Sign in if you have not.