Intelligent search powered by OpenAIÂ
Get store
GET
Products that use it:
Request's parameters
PATH
id
Store ID. This number is obtained when creating a store and consolidates all information related to it, such as opening and closing hours, location, and name.string
REQUIRED
Response parameters
id
Store identification number.string
name
Store's name.string
date_creation
Date and time the store was created.string
business_hours
Business hours. They are divided by day of the week and up to four opening and closing times per day are allowed.object
Errors
401Error
UNAUTHORIZED_SCOPES
`You are not allowed to access this resource`. Please review the `store_id` field and ensure that the information entered is correct and valid.
Unauthorized
`Invalid access token.` Please check if the access token entered in the request is correct.
404Error
404
`Not-Found. Store xx not found.` Please check the entered store_id and ensure the information is valid. The 'xx' will be replaced with the invalid store_id provided in the request.
Request
curl -X GET \
'https://api.mercadopago.com/stores/{id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
Sample answer
{
"id": 30163646,
"name": "Sucursal Instore",
"date_creation": "2024-05-16T14:54:28.573Z",
"business_hours": {
"monday": [
{
"open": "08:00",
"close": "13:00"
}
],
"tuesday": [
{
"open": "09:00",
"close": "18:00"
}
],
"wednesday": [
{
"open": "07:00",
"close": "10:00"
}
]
},
"location": {
"address_line": "Example Street Name, 0123, City name, State name.",
"reference": "Near to Mercado Pago",
"latitude": -23.52613,
"longitude": -46.76169
},
"external_id": "SUC001"
}