---
title: "Find shipping methods based on search parameters."
method: POST
path: "/api/shipping-methods/list"
tags: ["Shipping Method"]
---

# Find shipping methods based on search parameters.

`POST /api/shipping-methods/list`

## Query parameters

- `Sort.Field` string
- `Sort.Dir` 'ascending' | 'descending' — Specify sorting direction.
- `Skip` integer
- `Take` integer

## Request body

- ShippingMethodRequestFindParameters — Parameters used for searching/finding shipping methods.
  - `name` string, nullable — Filter shipping methods based on their name.
  - `ids` string[], nullable — Filter shipping methods based on matching ids.

## Response `200`

List of shipping methods matching the filters

- ShippingMethodDto[]
  - `id` string, required — Unique id associated to this entity.
  - `name` string, required — Identifying name. Must be unique.

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
