Skip to main content
⭐️ If you love EverShop, give it a star on GitHub. Thanks!

Shipping Method API

Use the REST API to interact with EverShop shipping methods.

Get available shipping methods

Use this endpoint to get available shipping methods.

Request Schema (application/json)
No request body required
GET/api/shippingMethods
curl
-H "Accept: application/json"
-H "Cookie: asid=<your admin cookie>"
https://<your domain>/api/shippingMethods
Sample Of Response
{
"data": {
"methods": [
{
"code": "free",
"name": "Free Shipping"
}
]
}
}