> ## Documentation Index
> Fetch the complete documentation index at: https://docs.propaga.mx/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a batch of corner stores

> Gets multiples corner stores by external Ids

<RequestExample>
  ```bash Request theme={null}
  curl --request POST 
  --location 'https://staging-api.propaga.io/v1/corner-store/external' 
  --header 'Authorization: <your_awesome_token>'
  --header 'Content-Type: application/json'
  --data '{
      "externalCornerStoreIds": ["12345"],
      "driverId": "12345"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "cornerStores": [
          {
              "userId": "3b275b2f-3b40-4ff2-86ff-2499de0cdcfa",
              "cornerStoreId": "8921a1e9-7998-4a0a-80e3-2fa18fb11edf",
              "status": "approved",
              "creditLimitAvailable": 2000,
              "interestRate": 4,
              "externalId": "12345"
          }
      ]
  }
  ```
</ResponseExample>

## Body

<ParamField body="externalCornerStoreIds" type="string[]" required>
  External corner store ids
</ParamField>

<ParamField body="driverId" type="string" required>
  Driver id
</ParamField>
