Acall Facility API

The Facility API API from Acall — 2 operation(s) for facility api.

Operations 2

GET /facilities 設備 一覧取得 #
GET /facilities/{facility_id} 設備 詳細取得 #

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-facility-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-facility-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Acall Public Facility API
  version: v1
servers:
- url: https://api.workstyleos.com/v1/
security:
- Bearer: []
tags:
- name: Facility API
  x-displayName: 設備 API
paths:
  /facilities:
    get:
      operationId: getFacilities
      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
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Facility'
                type: array
          description: 設備 一覧を返します
      summary: 設備 一覧取得
      tags:
      - Facility API
  /facilities/{facility_id}:
    get:
      operationId: getFacility
      parameters:
      - explode: false
        in: path
        name: facility_id
        required: true
        schema:
          type: string
        style: simple
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FacilityDetail'
          description: 設備 詳細を返します
      summary: 設備 詳細取得
      tags:
      - Facility API
components:
  schemas:
    Facility:
      example:
        facilityID: 00000000-0000-0000-0000-0000000000000
        facility_name: メイン会議室
        location: 神戸本社
        type: room
        usage:
        - 社内
        - 来客
        description: 神戸本社で一番広い会議室
      properties:
        facility_id:
          type: string
        facility_name:
          type: string
        location:
          type: string
        type:
          enum:
          - room
          - equipment
          type: string
        usage:
          items:
            type: string
          type: array
        description:
          type: string
    FacilityDetail:
      example:
        facility_id: 00000000-0000-0000-0000-0000000000000
        facility_name: メイン会議室
        location: 神戸本社
        type: room
        usage:
        - 社内
        - 来客
        description: 神戸本社で一番広い会議室
      properties:
        facility_id:
          type: string
        facility_name:
          type: string
        location:
          type: string
        type:
          enum:
          - room
          - equipment
          type: string
        usage:
          items:
            type: string
          type: array
        description:
          type: string
  securitySchemes:
    Bearer:
      description: Access token for API
      scheme: bearer
      type: http