For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
DocsAPI Reference
DocsAPI Reference
  • API Reference
      • GETList Material Categories
      • GETGet Material Category
      • POSTCreate Material Category
      • PUTUpdate Material Category
      • DELDelete Material Category
      • GETList Material Tags
      • GETGet Material Tag
      • POSTCreate Material Tag
      • PUTUpdate Material Tag
      • DELDelete Material Tag
      • GETList Supplier Categories
      • GETGet Supplier Category
      • POSTCreate Supplier Category
      • PUTUpdate Supplier Category
      • DELDelete Supplier Category
Dashboard
LogoLogo
API ReferenceCategories Tags

List Material Categories

GET
/api/v1/categories
GET
/api/v1/categories
$curl https://api.getply.com/api/v1/categories \
> -H "API_KEY: <apiKey>"
1{
2 "data": [
3 {
4 "id": "f6a7b8c9-d0e1-2345-fabc-456789012345",
5 "name": "Plumbing Supplies",
6 "subCategories": [],
7 "type": "MATERIAL",
8 "parentId": null,
9 "updatedAt": "2026-01-10T07:00:00Z"
10 }
11 ],
12 "pagination": {
13 "page": 0,
14 "size": 20,
15 "totalElements": 1,
16 "totalPages": 1
17 }
18}

Returns a paginated list of material categories for the authenticated business. Parent categories include nested subcategories. Deleted subcategories are filtered out of responses.

Requires scope: categories:read

Was this page helpful?

Get Material Category

Next
Built with

Authentication

API_KEYstring
API Key authentication via header

Query parameters

pageintegerOptional

Zero-based page index. Defaults to 0.

sizeintegerOptional

Items per page. Defaults to 20, maximum 100.

sortstringOptional

Sort field and direction (e.g., name,asc or updatedAt,desc). Supports Spring Pageable format.

Response

This endpoint returns an object.
datalist of objects
paginationobject
Pagination metadata returned on all list endpoints.

Errors

401
Unauthorized Error
403
Forbidden Error