Retorna lista de estabelecimentos disponíveis
cURL
curl --request GET \ --url https://api.example.com/stores
{ "stores": [ { "id": "store_001", "name": "Pizzaria Exemplo", "logo_url": "https://...", "category": "Alimentação", "is_open": true } ], "total": 50, "page": 1, "limit": 20 }
curl -X GET "https://api.indiqai.com/api/v1/stores?page=1&limit=20" \ -H "Authorization: Bearer <token>"
Was this page helpful?