acuity-brands Catalog API

Product catalog and item details

Operations 2

GET /catalog/items Acuity Brands List Catalog Items #
GET /catalog/items/{productNumber} Acuity Brands Get Catalog Item #

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/acuity-brands-catalog-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

acuity-brands-catalog-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Acuity Brands Catalog API
  description: B2B REST APIs for Acuity Brands distributors covering inventory availability, order status tracking, product catalog, and web content. Enables integration of Acuity Brands data into distributor ERP, e-commerce, and ordering systems.
  version: 1.0.0
  contact:
    name: Acuity Brands Developer Portal
    url: https://api-docs.acuitybrands.com/
servers:
- url: https://api.acuitybrands.com/v1
  description: Acuity Brands production API
security:
- BasicAuth: []
tags:
- name: Catalog
  description: Product catalog and item details
paths:
  /catalog/items:
    get:
      operationId: listCatalogItems
      summary: Acuity Brands List Catalog Items
      description: Search the Acuity Brands product catalog by category, brand, or keyword. Returns product details, specifications, and pricing.
      tags:
      - Catalog
      parameters:
      - name: q
        in: query
        description: Keyword search query
        schema:
          type: string
      - name: brand
        in: query
        description: Filter by brand name
        schema:
          type: string
      - name: category
        in: query
        description: Product category (indoor-lighting, outdoor-lighting, controls, emergency)
        schema:
          type: string
      - name: limit
        in: query
        description: Maximum number of results
        schema:
          type: integer
          default: 50
      - name: cursor
        in: query
        description: Pagination cursor
        schema:
          type: string
      responses:
        '200':
          description: Catalog item list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogItemList'
        '401':
          description: Unauthorized
  /catalog/items/{productNumber}:
    get:
      operationId: getCatalogItem
      summary: Acuity Brands Get Catalog Item
      description: Retrieve detailed product information for a specific item including specifications, certifications, and pricing.
      tags:
      - Catalog
      parameters:
      - name: productNumber
        in: path
        required: true
        description: Product number or SKU
        schema:
          type: string
      responses:
        '200':
          description: Catalog item details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogItem'
        '401':
          description: Unauthorized
        '404':
          description: Product not found
components:
  schemas:
    CatalogItem:
      type: object
      description: Acuity Brands product catalog item
      properties:
        productNumber:
          type: string
          description: Product number/SKU
          example: LBL4 48L ADP
        name:
          type: string
          description: Product name
          example: 4FT LED Wrap Light 4800 Lumens Adapter
        brand:
          type: string
          description: Brand name
          example: Lithonia Lighting
        category:
          type: string
          description: Product category
          example: Indoor Lighting
        subcategory:
          type: string
          description: Product subcategory
          example: Wrap Lights
        description:
          type: string
          description: Full product description
        specifications:
          type: object
          description: Technical specifications
          additionalProperties: true
        certifications:
          type: array
          items:
            type: string
          description: Product certifications
          example:
          - UL Listed
          - Energy Star
          - DLC Listed
        listPrice:
          type: number
          description: List price in USD
          example: 89.99
        upc:
          type: string
          description: UPC code
          example: 041194682000
        imageUrl:
          type: string
          description: Primary product image URL
        dataSheetUrl:
          type: string
          description: Product data sheet URL
    CatalogItemList:
      type: object
      description: Paginated list of catalog items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/CatalogItem'
        total:
          type: integer
          example: 50000
        cursor:
          type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using numeric User ID as username and API Key as password