> ## Documentation Index
> Fetch the complete documentation index at: https://developer.firstbasedev.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get warehouse

> Returns full details for a single warehouse accessible to the caller's organization.



## OpenAPI

````yaml /openapi.json get /api/v1/warehouses/{id}
openapi: 3.1.0
info:
  title: Firstbase API Specification Beta
  description: Integration endpoints for Firstbase
  version: 0.1.0
servers:
  - url: /
    description: Default
security:
  - ApiKey: []
tags:
  - name: Catalog
    description: Browse SKUs, brands, and categories
  - name: Inventory
    description: Query and manage inventory items and assets
  - name: Inventory Levels
    description: Configure inventory levels by SKU and warehouse
  - name: Inventory Orders
    description: Create and manage inventory orders
  - name: ITAD
    description: IT asset disposition requests
  - name: New Joiners
    description: Track and remind new joiners
  - name: Offices
    description: Manage office locations
  - name: Orders
    description: Create and track equipment orders
  - name: Packages
    description: Manage equipment packages
  - name: People
    description: Provision and manage users
  - name: Regions
    description: Query regions
  - name: Replacements
    description: Create and manage equipment replacements
  - name: Returns
    description: Create and manage returns
  - name: Shipment
    description: Look up shipments and carriers
  - name: Shipment Notices
    description: Create and manage shipment notices
  - name: Warehouses
    description: Query warehouses
paths:
  /api/v1/warehouses/{id}:
    get:
      tags:
        - Warehouses
      summary: Get warehouse
      description: >-
        Returns full details for a single warehouse accessible to the caller's
        organization.
      operationId: getWarehouseV1
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The requested warehouse
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WarehouseResponseDto'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiHttpErrors'
        '403':
          description: Endpoint not available for this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiHttpErrors'
        '404':
          description: Warehouse not found or not accessible to the caller's organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiHttpErrors'
        '409':
          description: Conflict
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiHttpErrors'
components:
  schemas:
    WarehouseResponseDto:
      type: object
      description: >-
        A Firstbase warehouse location where inventory can be stocked and
        shipment notices directed
      properties:
        id:
          type: string
          format: uuid
          description: >-
            Unique identifier for this warehouse; use this ID when creating
            inventory orders or shipment notices
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
        name:
          type: string
          description: Display name of the warehouse
          example: US East Warehouse
        address:
          $ref: '#/components/schemas/AddressResponse'
          description: Physical address of the warehouse; null when not yet configured
      required:
        - id
        - name
    PublicApiHttpErrors:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/PublicApiError'
      required:
        - errors
    AddressResponse:
      type: object
      description: Office address
      properties:
        street1:
          type: string
          description: Street address line 1
          example: 123
        street2:
          type: string
          description: Street address line 2
          example: Suite 100
        city:
          type: string
          description: City
          example: San Francisco
        province:
          type: string
          description: State or province
          example: California
        postalCode:
          type: string
          description: Postal / ZIP code
          example: 94105
        countryCode:
          type: string
          description: ISO 3166-1 alpha-2 country code
          example: US
        phoneNumber:
          type: string
          description: Contact phone number for the office
          example: '+15551234567'
    PublicApiError:
      type: object
      properties:
        detail:
          type: string
          description: Human-readable description of the error
          example: Invalid request
        source:
          type: string
          description: >-
            Entity or field path that caused the error (for example order,
            shipmentNotice, or person:email)
          example: request
      required:
        - detail
        - source
  securitySchemes:
    ApiKey:
      type: apiKey
      description: Prefix the value with "ApiKey" to indicate the custom authorization type
      name: Authorization
      in: header

````