Intelligent search powered by OpenAI
Get all stores
GET
Products that use it:
Request's parameters
PATH
seller_id
User ID that can be used to retrieve the stores.string
REQUIRED
Response parameters
id
ID that identifies the store.number
user_id
ID that identifies the user who owns the store.number
description
Name of the store.string
business_hours
List of store opening hours. Each attribute of the object will be represented by a day of the week.object
Errors
401Error
401
Unauthorized - Access Token is invalid
403Error
403
Forbidden - User cannot access this resource
424Error
424
Not Found - Failed to get some information of the stores
500Error
500
Internal server error
Request
curl -X GET \
'https://api.mercadopago.com/proximity-integration/users/{seller_id}/stores'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-4599*********755-11221*********d497ae962*********ecf8d85-1*********' \
Sample answer
[
{
"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"
}
]