1. 服務據點
支付業者停車場 API
  • 🚗 概述
  • 🤝 介接架構總覽
  • 🧾 開通流程
  • 🚧 驗收流程
  • ✅ 認證指南
  • 🌐 通用規則
  • 🧾 名詞解釋
  • </> API Reference
    • 服務據點
      • 查詢服務據點
        GET
    • 據點記錄
      • 查詢據點記錄
    • 車輛識別
      • 註冊車輛識別
      • 註銷車輛識別
      • 查詢車輛識別註冊狀態
      • 註冊第三方平台車輛識別
      • 註銷第三方平台車輛識別
      • 查詢車輛識別已註冊之第三方平台
    • 交易相關
      • 查詢交易
      • 請求訂單重新開立發票
    • 主動通知
      • 據點記錄進場通知
      • 據點記錄離場通知
      • 據點記錄取消通知
      • 請款請求
      • 退款請求
      • 發票開立方式請求
      • 發票開立通知
  • Schemas
    • ErrorGeneric
    • ErrorBusiness
    • VehicleType
    • ThirdPartyPlatformTag
    • PointOfInterest
    • ListPointsOfInterestResponse
    • SiteSession
    • GetSiteSessionResponse
    • RegisterPaymentUserIdentityRequest
    • PaymentUserIdentityIdResponse
    • ThirdPartyPlatformRegistrationRequest
    • ThirdPartyPlatformRegistrationsResponse
    • OrderItem
    • OrderTransaction
    • Invoice
    • InvoiceIssueTarget
    • Order
    • GetOrderResponse
    • InvoiceRecipientInfo
    • ReissueInvoiceRequest
    • SiteSessionStartedNotification
    • SiteSessionEndedNotification
    • SiteSessionCanceledNotification
    • PayRequestNotification
    • RefundRequestNotification
    • InvoiceIssueMethodRequest
    • InvoiceIssuedNotification
    • WebhookAck
  1. 服務據點

查詢服務據點

GET
/pois
查詢 Autopass 所有合作服務據點(如停車場)之基本資訊、目前費率與營業狀態。

Request

Authorization

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠422
🟠4XX
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/pois'
Response Response Example
200 - Success
{
    "data": [
        {
            "type": "ParkingLot",
            "id": "02e7e383-2751-4dec-9685-16a4c018d732",
            "name": "台北表演藝術中心測試站",
            "currentPrice": {
                "price": "50.0",
                "chargeMode": "PerUse"
            },
            "lat": 25.0839297,
            "lng": 121.5242831,
            "vehicleTypes": [
                "Car",
                "Moto"
            ],
            "detail": {
                "priceDetail": {
                    "current": [
                        "全時段每次 50 元(進場 5 分鐘內出場免費)"
                    ],
                    "complete": [
                        "全時段每次 50 元",
                        "*進場 5 分鐘內出場免費"
                    ]
                },
                "openingTime": {
                    "status": "Opening",
                    "period": "24 小時營業",
                    "allDayOpen": true,
                    "detail": [
                        "24 小時營業"
                    ]
                },
                "city": "台北市",
                "address": "台北市士林區劍潭路1號",
                "telephone": 277137995,
                "memos": [
                    "限高1.2M、限寬1M、限長1M、限重0.2公噸、室內、機械車位、非地下室"
                ],
                "spaceInformation": {
                    "totalLots": 45
                },
                "spaceBrandName": "日月亭俥亭停車事業股份有限公司"
            }
        }
    ]
}
Modified at 2026-09-06 17:39:55
Previous
🧾 名詞解釋
Next
查詢據點記錄
Built with