GET event/lgcodes

イベント情報を公開している自治体を検索するAPIです。
レスポンスはJSON文字列で返されます。

Resource URL

https://api.odp.jig.jp/event/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/C18207",
  "lgcode": "18207"
}]

Example Request

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

Example Response

{
  "result": [{
    "prefecture": "福井県",
    "locality": "鯖江市",
    "uri": "http://statdb.nstac.go.jp/lod/sac/C18207",
    "lgcode": "18207"
  }],
  "success": true
}