GET rubbish/lgcodes

ゴミ収集日の情報を公開している自治体を検索するAPIです。
レスポンスはJSON文字列で返されます。

Resource URL

https://api.odp.jig.jp/rubbish/lgcodes

Parameters

NameRequiredDescriptionDefaultExample
callbackoptinaljsonpで取得する場合のコールバック関数名を指定します。
指定されなかった場合、JSON文字列がそのまま返されます。
callback

Response

FieldTypeDescription
successBoolean正常に取得できたかどうかを返します。trueなら正常、falseなら何らかのエラーが発生したことを示します。
errorsCollection of Stringエラーメッセージの配列を返します。
resultCollection of LGCode標準地域コードの情報の配列を返します。
Example:
"result": [
    {
      "prefecture": "東京都",
      "locality": "品川区",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C13109",
      "lgcode": "13109"
    },
    {
      "prefecture": "福井県",
      "locality": "鯖江市",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C18207",
      "lgcode": "18207"
    },
    {
      "prefecture": "静岡県",
      "locality": "三島市",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C22206",
      "lgcode": "22206"
    }
  ]

Example Request

https://api.odp.jig.jp/rubbish/lgcodes

Example Response

{
  "result": [
    {
      "prefecture": "東京都",
      "locality": "品川区",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C13109",
      "lgcode": "13109"
    },
    {
      "prefecture": "福井県",
      "locality": "鯖江市",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C18207",
      "lgcode": "18207"
    },
    {
      "prefecture": "静岡県",
      "locality": "三島市",
      "uri": "http://statdb.nstac.go.jp/lod/sac/C22206",
      "lgcode": "22206"
    }
  ],
  "success": true
}