Salla Shipping API

The Shipping API from Salla — 6 operation(s) for shipping.

Operations 10

GET /shipments List Shipments #
POST /shipments Create Shipment #
GET /shipments/{shipment_id} Get Shipment Details #
GET /shipping/zones List Shipping Zones #
GET /shipping/zones/{zone_id} Get Shipping Zone Details #
GET /shipping/companies List Shipping Companies #
POST /shipping/companies Create Shipping Company #
GET /shipping/companies/{company_id} Get Shipping Company #
PUT /shipping/companies/{company_id} Update Shipping Company #
DELETE /shipping/companies/{company_id} Delete Shipping Company #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/salla-shipping-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

salla-shipping-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Salla Shipping API
  version: '2'
  contact:
    name: Salla Developers
    url: https://docs.salla.dev/
    email: support@salla.dev
  description: 'Operations tagged Shipping across 2 of this provider''s published API definitions: salla-merchant-api-openapi.yml, salla-shipping-fulfillment-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.salla.dev/admin/v2
  description: Salla Merchant API production
security:
- OAuth2: []
tags:
- name: Shipping
paths:
  /shipments:
    get:
      summary: List Shipments
      operationId: listShipments
      tags:
      - Shipping
      responses:
        '200':
          description: Shipment list.
    post:
      summary: Create Shipment
      operationId: createShipment
      tags:
      - Shipping
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Shipment created.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Merchant API production
  /shipments/{shipment_id}:
    parameters:
    - name: shipment_id
      in: path
      required: true
      schema:
        type: integer
    get:
      summary: Get Shipment Details
      operationId: getShipment
      tags:
      - Shipping
      responses:
        '200':
          description: Shipment details.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Merchant API production
  /shipping/zones:
    get:
      summary: List Shipping Zones
      operationId: listShippingZones
      tags:
      - Shipping
      responses:
        '200':
          description: Shipping zone list.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Merchant API production
  /shipping/zones/{zone_id}:
    parameters:
    - name: zone_id
      in: path
      required: true
      schema:
        type: integer
    get:
      summary: Get Shipping Zone Details
      operationId: getShippingZone
      tags:
      - Shipping
      responses:
        '200':
          description: Shipping zone details.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Merchant API production
  /shipping/companies:
    get:
      summary: List Shipping Companies
      operationId: listShippingCompanies
      tags:
      - Shipping
      responses:
        '200':
          description: Shipping company list.
    post:
      summary: Create Shipping Company
      operationId: createShippingCompany
      tags:
      - Shipping
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Shipping company created.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Merchant API production
  /shipping/companies/{company_id}:
    parameters:
    - name: company_id
      in: path
      required: true
      schema:
        type: integer
    get:
      summary: Get Shipping Company
      operationId: getShippingCompany
      tags:
      - Shipping
      responses:
        '200':
          description: Shipping company details.
    put:
      summary: Update Shipping Company
      operationId: updateShippingCompany
      tags:
      - Shipping
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Shipping company updated.
    delete:
      summary: Delete Shipping Company
      operationId: deleteShippingCompany
      tags:
      - Shipping
      responses:
        '200':
          description: Shipping company deleted.
    servers:
    - url: https://api.salla.dev/admin/v2
      description: Salla Shipping API production
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.salla.sa/oauth2/auth
          tokenUrl: https://accounts.salla.sa/oauth2/token
          refreshUrl: https://accounts.salla.sa/oauth2/token
          scopes:
            offline_access: Required to receive a refresh token.
            orders.read: Read orders.
            orders.read_write: Read and write orders.
            products.read: Read products.
            products.read_write: Read and write products.
            customers.read: Read customers.
            customers.read_write: Read and write customers.
            settings.read: Read store settings.
            webhooks.read_write: Manage webhook subscriptions.
x-refined-from:
- salla-merchant-api-openapi.yml
- salla-shipping-fulfillment-api-openapi.yml