Door Buildings API

Building operations

Operations 1

GET /v1/buildings List Buildings #

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/door-buildings-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

door-buildings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Access Management Buildings API
  description: Authentication
  termsOfService: urn:tos
  contact: {}
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0
  version: '1.0'
servers:
- url: https://auth.prod.latch.com
  description: Latch Auth API base URL
tags:
- name: Buildings
  description: Building operations
paths:
  /v1/buildings:
    get:
      tags:
      - Buildings
      summary: List Buildings
      description: Get a DOOR partner's list of buildings
      operationId: listBuildings
      responses:
        '200':
          description: Successfully retrieved list of buildings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuildingsResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestError'
        '401':
          description: Invalid authorization token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: Forbidden
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
      security:
      - bearerAuth: []
components:
  schemas:
    Address:
      title: Address
      required:
      - addressLine1
      - addressLine2
      - addressLine3
      - city
      - country
      - postalCode
      - state
      type: object
      properties:
        addressLine1:
          type: string
          description: Address line 1
        addressLine2:
          type: string
          description: Address line 2
        addressLine3:
          type: string
          description: Address line 3
        city:
          type: string
          description: City the building is located in
        country:
          type: string
          description: Country the building is located in
        postalCode:
          type: string
          description: Postal code of the building
        state:
          type: string
          description: State the building is located in
      description: Address of the building
    UnauthorizedError:
      title: UnauthorizedError
      required:
      - message
      type: object
      properties:
        message:
          type: string
          enum:
          - UNAUTHORIZED
    InternalServerError:
      title: InternalServerError
      required:
      - message
      type: object
      properties:
        message:
          type: string
          enum:
          - INTERNAL_SERVER_ERROR
    Portfolio:
      title: Portfolio
      required:
      - name
      - uuid
      type: object
      properties:
        name:
          type: string
          description: Name of the Portfolio
        uuid:
          type: string
          description: Portfolio unique identifier
          format: uuid
      description: DOOR Portfolio object
    Building:
      title: Building
      required:
      - address
      - name
      - uuid
      type: object
      properties:
        address:
          $ref: '#/components/schemas/Address'
        name:
          type: string
          description: Name of the Building
        portfolio:
          $ref: '#/components/schemas/Portfolio'
        timezone:
          type: string
          description: Timezone of the building in IANA zone ID format
          example: America/New_York
        uuid:
          type: string
          description: Building unique identifier
          format: uuid
      description: DOOR Building object
    BuildingsResponse:
      title: BuildingsResponse
      required:
      - buildings
      type: object
      properties:
        buildings:
          type: array
          items:
            $ref: '#/components/schemas/Building'
      description: Response from the buildings endpoint
    BadRequestError:
      title: BadRequestError
      required:
      - message
      type: object
      properties:
        message:
          type: string
          enum:
          - BUILDING_UUID_REQUIRED
          - EMAIL_AND_PHONE_PROVIDED
          - EMAIL_CAN_NOT_BE_EMPTY
          - EMAIL_OR_PHONE_REQUIRED
          - EMAIL_REQUIRED_FOR_PERMANENT
          - END_TIME_NOT_SUPPORTED
          - INVALID_END_TIME
          - INVALID_PHONE
          - INVALID_START_TIME
          - MISSING_END_TIME
          - PASSCODE_TYPE_CANT_BE_REVOKED
          - USER_CAN_NOT_SHARE