GTFS Feedを生成してそのダウンロードURLを返すAPIです。
Acceptヘッダーがapplication/json
の場合はJSON文字列を返します。
callbackパラメータが指定されている場合はjsonpのスクリプトを返します。
それ以外の場合、GTFS Feedのダウンロードリンクを含むHTMLを返します。
Resource URL
https://api.odp.jig.jp/gtfs/generate
Parameters
Name | Required | Description | Default | Example |
lgcode | required | GET gtfs/lgcodes で取得した地域コードの数値部分を5桁の数字で指定します。 | | 18207 |
callback | optinal | jsonpで取得する場合のコールバック関数名を指定します。 | | callback |
Response
Field | Type | Description |
success | Boolean | 正常に取得できたかどうかを返します。trueなら正常、falseなら何らかのエラーが発生したことを示します。 |
errors | Collection of String | エラーメッセージの配列を返します。 |
result | GTFSFeed | GTFS FeedのダウンロードURLを持つオブジェクトを返します。
Example: "result": {
"feed_url": "https://s3-ap-northeast-1.amazonaws.com/odp-gtfs/18207.zip"
} |
Example Request
https://api.odp.jig.jp/gtfs/generate?lgcode=18207
Example Response
{
"result": {
"feed_url": "https://s3-ap-northeast-1.amazonaws.com/odp-gtfs/18207.zip"
},
"success": true
}