Get all stores - Delivery stores - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get all stores

GET

/proximity-integration/users/{seller_id}/stores
This endpoint returns all stores owned by a user, using the User ID as a parameter.
Request's parameters
seller_id

REQUIRED

string
Localization: pathUser ID that can be used to retrieve the stores.
Response parameters
id
number
Localization: bodyID that identifies the store.
user_id
number
Localization: bodyID that identifies the user who owns the store.
description
string
Localization: bodyName of the store.
business_hours
object
Localization: bodyList of store opening hours. Each attribute of the object will be represented by a day of the week.
Request
curl
curl -X GET \
      'https://api.mercadopago.com/proximity-integration/users/{seller_id}/stores' \
       -H 'Authorization: Bearer YOUR_ACCESS_TOKEN \
      
Answer
json
[
  {
    "id": 41517088,
    "user_id": 813887163,
    "description": "Doc's grocery store",
    "business_hours": {
      "monday": [
        {
          "open": "8:00",
          "close": "15:00"
        }
      ],
      "tuesday": [
        {
          "open": "8:00",
          "close": "15:00"
        }
      ],
      "wendsday": [
        {
          "open": "8:00",
          "close": "15:00"
        }
      ],
      "thursday": [
        {
          "open": "8:00",
          "close": "15:00"
        }
      ],
      "friday": [
        {
          "open": "8:00",
          "close": "15:00"
        }
      ]
    },
    "location": {
      "address_line": "Viaduto Arapuã - Saude, São Paulo - SP, 04307-070, Brasil",
      "reference": "Next to a bakery",
      "latitude": -23.630159633405057,
      "longitude": -46.64532809999999
    },
    "external_id": "A15154DE"
  }
]
Errors
401bad_request
401 Unauthorized - Access Token is invalid
403bad_request
403 Forbidden - User cannot access this resource
424bad_request
424 Not Found - Failed to get some information of the stores
500bad_request
500 Internal server error