Skydropx

Skydropx is a Mexican multi-carrier shipping and logistics platform that lets e-commerce sellers and businesses compare rates, generate labels, schedule pickups, and track parcels across national and international carriers from a single API. Its modern Skydropx Pro API (base https://pro.skydropx.com/api/v1) is a REST interface secured with OAuth2 client-credentials Bearer tokens and covers quotations, shipments, labels/orders, pickups, address templates, tracking, and account credit balances. A separate classic Skydropx API (https://api.skydropx.com/v1, authenticated with an API key Token header) and a Radar tracking API also exist. Billing is prepaid - the platform is free to use and you pay per label from a wallet balance.

Skydropx publishes 8 APIs on the APIs.io network, including Quotations API, Shipments API, Orders and Labels API, and 5 more. Tagged areas include Shipping, Logistics, Multi-Carrier, Mexico, and Latin America.

Skydropx’s developer surface includes authentication, documentation, and 7 more developer resources.

36.0/100 thin ▬ flat Agent 48/100 agent ready Full breakdown ↓
scored 2026-07-20 · rubric v0.4
8 APIs 0 Features
ShippingLogisticsMulti-CarrierMexicoLatin AmericaLabelsRatesParcelsTrackingFulfillmentSaaS

API Rating

API Evangelist API Evangelist Rating How this is scored →
scored 2026-07-20 · rubric v0.4
Composite quality — 36.0/100 · thin
Contract Quality 15.5 / 25
Developer Ergonomics 3.9 / 20
Commercial Clarity 5.8 / 20
Operational Transparency 4.1 / 13
Governance 0.0 / 12
Discoverability 6.8 / 10
Agent readiness — 48/100 · agent ready
Machine-Readable Contract 18 / 18
Agentic Access Contract 15 / 15
MCP Server 0 / 12
Machine-Readable Auth 10 / 10
Idempotency 0 / 9
Stable Error Semantics 0 / 8
Request/Response Examples 0 / 7
Rate-Limit Signaling 7 / 7
Typed Event Surface 0 / 6
Agent Skills 0 / 5
Well-Known Catalog 0 / 4
Consent & Bot Identity 0 / 3
Improve this rating by publishing the missing artifacts — every area above can be raised, and the full rubric is at apis.io/rating/. This rating is computed from github.com/api-evangelist/skydropx: open an issue to ask a question, or submit a pull request to add artifacts. Want it done for you? Prioritized profiling — $2,500 →

APIs

Skydropx Quotations API

Request multi-carrier shipping rates for a parcel between an origin and destination. A quotation returns available carrier services with prices and delivery estimates; the chose...

Skydropx Shipments API

Create shipments from a quotation and rate, list and retrieve shipments, cancel shipments, and add shipment protection. Creating a shipment purchases the label and debits the ac...

Skydropx Orders and Labels API

Create, list, retrieve, and update orders, and fetch the generated shipping label URLs (PDF) for an order. Printing formats can be configured per account.

Skydropx Pickups API

Schedule, list, retrieve, and reschedule carrier pickups (recolecciones) for created shipments, and check pickup date availability by coverage.

Skydropx Address Templates API

Manage reusable saved addresses - create, list, get, update, and delete address templates, and validate an address against carrier serviceability.

Skydropx Tracking API

Track a shipment by tracking number and report tracking events for fleet/external shipments. Status changes (created, picked up, in transit, delivered, exception) are also deliv...

Skydropx Finance API

Check the prepaid account credit balance and list extra charges / surcharges applied to shipments, supporting reconciliation of pay-per-label spend.

Skydropx Catalog API

Read reference catalogs used to build shipments - available carrier services, packaging type codes, office/drop-off points, and SAT Carta Porte consignment-note codes required f...

Collections

Pricing Plans

Skydropx Plans Pricing

2 plans

PLANS

Rate Limits

Skydropx Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

Documentation 1

Reference material describing how the API behaves

Agent Surfaces 1

MCP servers, agent skills, and machine-readable catalogs

Access & Security 2

Authentication, authorization, and security posture

Operate 1

Status, limits, changes, and where to get help

Commercial 2

Pricing, plans, and the legal terms of use

Company 2

The organization behind the API

Source (apis.yml)

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: Skydropx Pro API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{accessToken}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Issue an OAuth2 access token.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/oauth/token
      auth:
        type: none
      body:
        type: text
        data: grant_type=client_credentials&client_id={{clientId}}&client_secret={{clientSecret}}
    docs: Exchanges client_id and client_secret for a Bearer access token (valid ~2 hours) using the client_credentials grant.
      Content-Type application/x-www-form-urlencoded.
- info:
    name: Quotations
    type: folder
  items:
  - info:
      name: Create a rate quotation.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/quotations
      body:
        type: json
        data: "{\n  \"zip_from\": \"01000\",\n  \"zip_to\": \"64000\",\n  \"parcel\": { \"length\": 20, \"width\": 20, \"\
          height\": 10, \"weight\": 1 }\n}"
    docs: Requests multi-carrier shipping rates for a parcel between an origin and destination postal code.
  - info:
      name: Retrieve a quotation.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/quotations/:id
      params:
      - name: id
        value: ''
        type: path
        description: The quotation id.
    docs: Retrieves a previously created quotation and its rates by id.
- info:
    name: Shipments
    type: folder
  items:
  - info:
      name: List shipments.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments
    docs: Lists shipments, optionally filtered by status and date range.
  - info:
      name: Create a shipment.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/shipments
      body:
        type: json
        data: "{\n  \"quotation_id\": \"\",\n  \"rate_id\": \"\",\n  \"address_from\": {},\n  \"address_to\": {}\n}"
    docs: Creates a shipment from a quotation and selected rate, purchasing the label and debiting the wallet.
  - info:
      name: Retrieve a shipment.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments/:id
      params:
      - name: id
        value: ''
        type: path
        description: The shipment id.
    docs: Retrieves a shipment by id, including label URL and tracking data.
  - info:
      name: Cancel a shipment.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/shipments/:id/cancellations
      params:
      - name: id
        value: ''
        type: path
        description: The shipment id.
    docs: Requests cancellation of a shipment and refund of the label where eligible.
  - info:
      name: Add shipment protection.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/shipments/:id/protect
      params:
      - name: id
        value: ''
        type: path
        description: The shipment id.
      body:
        type: json
        data: '{}'
    docs: Adds optional parcel protection / insurance coverage to a shipment.
- info:
    name: Orders and Labels
    type: folder
  items:
  - info:
      name: List orders.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/orders
    docs: Lists all orders.
  - info:
      name: Create an order.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/orders
      body:
        type: json
        data: '{}'
    docs: Creates a new order.
  - info:
      name: Retrieve an order.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/orders/:id
      params:
      - name: id
        value: ''
        type: path
        description: The order id.
    docs: Retrieves an order by id.
  - info:
      name: Get order label URLs.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/orders/:id/labels
      params:
      - name: id
        value: ''
        type: path
        description: The order id.
    docs: Retrieves the generated shipping label URLs (PDF) for an order.
- info:
    name: Pickups
    type: folder
  items:
  - info:
      name: List pickups.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/pickups
    docs: Lists all scheduled carrier pickups.
  - info:
      name: Schedule a pickup.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/pickups
      body:
        type: json
        data: '{}'
    docs: Schedules a carrier pickup (recoleccion) for one or more shipments.
  - info:
      name: Check pickup coverage.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/pickups/coverage
    docs: Checks available pickup dates for a location and carrier.
- info:
    name: Address Templates
    type: folder
  items:
  - info:
      name: List address templates.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/address_templates
    docs: Retrieves all saved address templates.
  - info:
      name: Create an address template.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/address_templates
      body:
        type: json
        data: '{}'
    docs: Creates a new saved address template.
  - info:
      name: Validate an address with carriers.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/address_templates/:id/verify_by_carriers
      params:
      - name: id
        value: ''
        type: path
        description: The address template id.
    docs: Validates a saved address against carrier serviceability.
- info:
    name: Tracking
    type: folder
  items:
  - info:
      name: Track a shipment.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments/tracking/:tracking_number
      params:
      - name: tracking_number
        value: ''
        type: path
        description: The carrier tracking number.
    docs: Retrieves the current tracking status and event history for a tracking number.
  - info:
      name: Report a tracking event.
      type: http
    http:
      method: POST
      url: https://pro.skydropx.com/api/v1/shipments/tracking
      body:
        type: json
        data: '{}'
    docs: Reports a tracking event for a fleet or externally fulfilled shipment.
- info:
    name: Finance
    type: folder
  items:
  - info:
      name: Get account credit balance.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/finance/credits
    docs: Returns the current prepaid account credit (wallet) balance.
  - info:
      name: List extra charges.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/finance/extra-charges
    docs: Lists surcharges and extra charges applied to shipments, with pagination.
- info:
    name: Catalog
    type: folder
  items:
  - info:
      name: List carrier services.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments/carrier_services
    docs: Lists the carrier services available to the account.
  - info:
      name: List packaging codes.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments/packagings
    docs: Lists packaging type codes usable when creating shipments.
  - info:
      name: List consignment-note codes.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/shipments/consignment_notes
    docs: Lists SAT Carta Porte consignment-note codes required for applicable Mexican shipments.
  - info:
      name: List office / drop-off points.
      type: http
    http:
      method: GET
      url: https://pro.skydropx.com/api/v1/office_points
    docs: Retrieves office and drop-off point locations for a carrier or rate.
bundled: true