Logoelepay
Locations

List locations

ロケーション情報を一覧で取得します。

GET
/locations
最大件数
value 0–100 · default: 20
検索開始位置
default: 0

Response Body

application/json

OK

TypeScript Definitions

Use the response body type in TypeScript.

curl -X GET "https://api.elepay.io/locations"
{
  "total": 0,
  "locations": [
    {
      "id": "string",
      "name": {
        "kanji": "string",
        "kana": "string",
        "romaji": "string"
      },
      "tel": "string",
      "zip": "string",
      "address": {
        "kanji": {
          "pref": "string",
          "city": "string",
          "town": "string",
          "address1": "string",
          "address2": "string"
        },
        "kana": {
          "pref": "string",
          "city": "string",
          "town": "string",
          "address1": "string",
          "address2": "string"
        },
        "romaji": {
          "pref": "string",
          "city": "string",
          "town": "string",
          "address1": "string",
          "address2": "string"
        }
      },
      "latitude": 0.1,
      "longitude": 0.1,
      "note": "string",
      "status": "active"
    }
  ]
}