Authentication

Basic HTTP authentication using API key and secret.
Credentials can be found in Settings → Integration → API access.

  • api-key;
  • api-secret - a secret key. Please note that it must be confidential. Never give it to anybody. We will never ask you for this key. We advise to change this key from time to time. If you do not need to do API requests all the time, we advise do delete it after each usage. Empty API access key disables API and this increases security.
Authorization: Basic base64([api-key]:[api-secret])
curl -X GET "https://api.mrpeasy.com/v1/orders" \
     -H "Authorization: Basic YXBpLWtleTphcGktc2VjcmV0"