Get store - Physical stores - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get store

GET

https://api.mercadopago.com/stores/{id}
Check all the information of a physical store with the ID of the store you want.
Request's parameters
PATH
id
string

REQUIRED

Store's Id
Response parameters
id
string
id
name
string
name
date_creation
string
date_creation
business_hours
object
business_hours
Errors

400Error

INVALID_STORE_ID

Invalid STORE_ID.

Request
curl -X GET \
    'https://api.mercadopago.com/stores/{id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-4599*********755-11221*********d497ae962*********ecf8d85-1*********' \
    
Sample answer
{
  "id": 30163646,
  "name": "Sucursal Instore",
  "date_creation": "2021-04-16T14:54:28.573Z",
  "business_hours": {
    "monday": [
      {
        "open": "08:00",
        "close": "13:00"
      }
    ],
    "tuesday": [
      {
        "open": "08:00",
        "close": "18:00"
      }
    ],
    "wednesday": [
      {
        "open": "07:00",
        "close": "10:00"
      }
    ]
  },
  "location": {
    "address_line": "Rua Ângelo Piva, Osasco, São Paulo, Brasil",
    "reference": "Melicidade",
    "latitude": -23.52613,
    "longitude": -46.76169
  },
  "external_id": "SUC001"
}