Search catalog objects
documentedSearches catalog objects by filters.
POST /v2/catalog/searchCommerceno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://connect.squareup.com/v2/catalog/search" \
-X POST \
-H "Square-Version: 2026-01-22" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"object_types": ["ITEM"], "cursor": "{{$cursor}}", "limit": {{$limit}}, "begin_time": "{{$begin_time}}", "include_deleted_objects": {{$include_deleted_objects}}, "include_related_objects": {{$include_related_objects}}, "include_category_path_to_root": {{$include_category_path_to_root}}, "query": {"prefix_query": {"attribute_name": "name", "attribute_prefix": "{{$attribute_prefix}}"}}}'