Shiplemon API
  • Overview
  • Authentication
  • Errors
  • Testing (important)
  • Validation & Data
  • Endpoints
    • Rates
      • Get Rates
      • Get Rate
    • Shipments
      • Create Shipment
      • Create Shipment for Locker
      • Import Shipment
      • Update Shipment
      • Get shipments
      • Get shipment
      • Cancel Shipment
      • Tracking
      • Label Print Format
    • Incoming Orders
      • Create Incoming Order
      • Get incoming order
      • Set incoming order state
  • Support
    • Help Center
Powered by GitBook
On this page

Authentication

In order to use the API of Shiplemon.com, you should contact us in order to create an API key for you. Start by sending an email at info@shiplemon.com

PreviousOverviewNextErrors

Last updated 3 years ago

Each request you make to the API must include the following HTTP header in order to authenticate with the Shiplemon API

'x-api-key': 'YOUR_API_KEY'

Replace the YOUR_API_KEY with your own API key. All API requests must be made over . Calls made over plain HTTP will fail. API requests without the above x-api-key header will also fail.

Keep Your API Keys Secure

Your API keys carry many privileges, so be sure to keep them secure! Do not share your API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

Make sure to familiarize yourself with security best practices around storing and using API keys. Never ever hard-code the API key into source control systems like Git, but extract this information into environment variables instead.

In the event, your API key is compromised, immediately revoke it from your account dashboard and create a new API key.

HTTPS