Acall Gate API

The Gate API API from Acall — 1 operation(s) for gate api.

Operations 1

GET /gates/logs ゲートアクセスログ 一覧取得 #

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/acall-gate-api-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

acall-gate-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Acall Public Gate API
  version: v1
servers:
- url: https://api.workstyleos.com/v1/
security:
- Bearer: []
tags:
- name: Gate API
  x-displayName: ゲート API
paths:
  /gates/logs:
    get:
      operationId: getGateLogs
      parameters:
      - description: 取得件数を指定します
        explode: true
        in: query
        name: limit
        required: false
        schema:
          type: integer
        style: form
      - description: オフセットを指定します
        explode: true
        in: query
        name: offset
        required: false
        schema:
          type: integer
        style: form
      - description: ゲート名、解錠者名からあいまい検索します
        explode: true
        in: query
        name: freeword
        required: false
        schema:
          type: string
        style: form
      - description: 検索期間の開始日時を指定します
        explode: true
        in: query
        name: starting_at
        required: false
        schema:
          format: date-time
          type: string
        style: form
      - description: 検索期間の終了日時を指定します
        explode: true
        in: query
        name: ending_at
        required: false
        schema:
          format: date-time
          type: string
        style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/GateLog'
                type: array
          description: ゲートアクセスログ 一覧を返します
      summary: ゲートアクセスログ 一覧取得
      tags:
      - Gate API
components:
  schemas:
    GateOperator:
      example:
        operator_type: guest
        operator_name: 山田太郎
      properties:
        operator_type:
          enum:
          - user
          - guest
          type: string
        operator_name:
          type: string
    GatePasser:
      example:
        id: 00000000-0000-0000-0000-0000000000000
        family_name: 山田
        given_name: 太郎
        family_name_ruby: やまだ
        given_name_ruby: たろう
      properties:
        id:
          type: string
        family_name:
          type: string
        given_name:
          type: string
        family_name_ruby:
          type: string
        given_name_ruby:
          type: string
    GateLog:
      example:
        gate_name: エントランスゲート
        status: ok
        opened_at: '2020-03-06T16:10:00+09:00'
        operators:
        - operator_type: guest
          operator_name: 山田太郎
        - operator_type: guest
          operator_name: 相田晴香
        passers:
        - id: 00000000-0000-0000-0000-0000000000000
          family_name: 山田
          given_name: 太郎
          family_name_ruby: やまだ
          given_name_ruby: たろう
        - id: 00000000-0000-0000-0000-0000000000001
          family_name: 相田
          given_name: 晴香
          family_name_ruby: そうだ
          given_name_ruby: はるか
      properties:
        gate_id:
          type: string
        gate_name:
          type: string
        status:
          enum:
          - ok
          - expired
          - forbidden
          - timeout
          - not_found
          - internal_server_error
          type: string
        opened_at:
          format: date-time
          type: string
        operators:
          items:
            $ref: '#/components/schemas/GateOperator'
          type: array
        passers:
          items:
            $ref: '#/components/schemas/GatePasser'
          type: array
  securitySchemes:
    Bearer:
      description: Access token for API
      scheme: bearer
      type: http