Autopass Locations API

Partner parking locations (POIs)

Operations 1

GET /pois List partner parking locations #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/autopass-locations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

autopass-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Autopass Service Authorization Locations API
  version: '1.0'
  description: Autopass ("快速通") is a Taiwan mobility financial-services platform that lets channel brand partners embed license-plate-based parking payment into their car-owner apps. Partners register user license plates, surface partner parking locations (POIs), read parking sessions and orders, and receive entry/exit/billing/refund notifications. This description reflects the operations and response fields published in the Autopass partner documentation; it is an API Evangelist reconstruction, not a provider-issued spec.
  contact:
    name: Autopass
    url: https://docs.autopass.xyz
  termsOfService: https://autopass.xyz/terms
servers:
- url: https://api.autopass.xyz
  description: Production
security:
- autopassOAuth: []
tags:
- name: Locations
  description: Partner parking locations (POIs)
paths:
  /pois:
    get:
      tags:
      - Locations
      operationId: listPois
      summary: List partner parking locations
      description: Returns partner parking locations (points of interest) with name, address, opening-time status/period, current price and charge mode, price details, space information, telephone, supported vehicle types, operator brand and memos.
      responses:
        '200':
          description: A list of parking locations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Poi'
components:
  schemas:
    Poi:
      type: object
      description: A partner parking location (point of interest).
      properties:
        name:
          type: string
          description: Parking location name
        vehicleTypes:
          type: array
          description: Supported vehicle types (car / motorcycle)
          items:
            type: string
        currentPrice:
          type: object
          properties:
            price:
              type: number
              description: Current rate price
            chargeMode:
              type: string
              description: Charge mode (by time / by entry / progressive)
        detail:
          type: object
          properties:
            address:
              type: string
            telephone:
              type: string
            spaceBrandName:
              type: string
              description: Operator brand name
            openingTime:
              type: object
              properties:
                status:
                  type: string
                  description: Open / resting / closing soon
                period:
                  type: string
                  description: Business hours period
            priceDetail:
              type: object
              properties:
                current:
                  type: array
                  items:
                    type: string
                  description: Current rate description
                complete:
                  type: string
                  description: Complete rate description
            spaceInformation:
              type: object
              properties:
                totalLots:
                  type: integer
                  description: Total parking spaces
            memos:
              type: array
              items:
                type: string
              description: Extra parking-location notes
  securitySchemes:
    autopassOAuth:
      type: oauth2
      description: OAuth 2.0 / OpenID Connect. Discovery at https://api.autopass.xyz/.well-known/openid-configuration
      flows:
        authorizationCode:
          authorizationUrl: https://api.autopass.xyz/oauth/authorize
          tokenUrl: https://api.autopass.xyz/oauth/token
          refreshUrl: https://api.autopass.xyz/oauth/token
          scopes:
            openid: OpenID Connect authentication (subject, email, phone_number claims)
        clientCredentials:
          tokenUrl: https://api.autopass.xyz/oauth/token
          scopes:
            openid: OpenID Connect authentication