Skip to main content
GET
/
user
/
addresses
/
sender
Retrieve a list of sender addresses
curl --request GET \
  --url https://panel.sendcloud.sc/api/v2/user/addresses/sender \
  --header 'Authorization: Basic <encoded-value>'
{
  "sender_addresses": [
    {
      "id": 2,
      "company_name": "French Company",
      "contact_name": "Marie Doe",
      "email": "info@sendcloud.fr",
      "telephone": "",
      "street": "Rue Villiers de l'Isle Adam",
      "house_number": "33",
      "postal_box": "",
      "postal_code": "35000",
      "city": "Rennes",
      "country": "FR",
      "country_state": null,
      "vat_number": "NL123456789B01",
      "eori_number": "NL123456789",
      "label": "Sample label FR",
      "brand_id": 1,
      "signature_full_name": "",
      "signature_initials": ""
    },
    {
      "id": 1,
      "company_name": "Sendcloud",
      "contact_name": "John Doe",
      "email": "johndoe@sendcloud.com",
      "telephone": "+31626262626",
      "street": "Bogert",
      "house_number": "10",
      "postal_box": "",
      "postal_code": "5611 EM",
      "city": "Eindhoven",
      "country": "NL",
      "country_state": null,
      "vat_number": "NL123456789B01",
      "eori_number": "NL123456789",
      "label": "Sample label NL",
      "brand_id": 2,
      "signature_full_name": "John Doe",
      "signature_initials": "JD"
    }
  ]
}
API v2 is entering maintenance mode. New users should start with API v3 to access our latest features and improved performance. Already using v2? Don’t worry, your current integration remains fully functional. Read more about maintenance mode, or check out the migration guide for API v3.
The response will include the id of each address, which you can include as a parameter when creating parcels or looking up shipping methods via the API.

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Response

200 - application/json

List of sender addresses.

sender_addresses
Address Object · object[]

A list of the users configured sender addresses.