Get All Materials
get_all_materialsRetrieve a paginated list of materials for a specified Procore project. Filter by status, labels, search, or dates to get the exact material data you need without modifying anything.
Instructions
Returns a paginated list of materials for the project. Use this when you already know which material you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted. Returns a single JSON object describing the material. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, project_id. Procore API (v2.0): Resource Management > Materials Management. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/materials_mgmt/materials
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| view | No | Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields | |
| per_page | No | Query string parameter — the page size between 1 and 100. | |
| company_id | Yes | URL path parameter — the company identifier | |
| project_id | Yes | URL path parameter — the project identifier | |
| filters__id | No | Query string parameter — filter by resource GUIDs | |
| filters__labels | No | Query string parameter — comma-separated labels to filter materials by | |
| filters__search | No | Query string parameter — filter results by search | |
| filters__status | No | Query string parameter — comma-separated line status filters | |
| filters__columns | No | Query string parameter — columns to include in the response | |
| filters__created_at | No | Query string parameter — filter by created date. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]) | |
| filters__updated_at | No | Query string parameter — filter by updated date. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]) | |
| filters__show_zero_quantity | No | Query string parameter — when set, controls zero-quantity visibility. Omitted: true for inventory/extended/compact views (GetMaterial); false for location view. |