# List particular locations

```http
GET https://api.synup.com/api/v4/locations-by-ids
```

This API retrieves **detailed information** for one or more **specified location IDs**.

It provides comprehensive data about each location, including its name, address, contact details, business hours, categories, nedia and other relevant attributes.
It support for both active and archived locations.

Source: https://developer.synup.com/api/locations/list-particular-locations

## Query parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `ids` | array | required | Array of location IDs in JSON string format. |

## Example request

```bash
curl -X GET 'https://api.synup.com/api/v4/locations-by-ids' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'
```

## Responses

| Status | Description |
| --- | --- |
| `200` |  |
| `400` | Bad request - Invalid location IDs format |
| `401` | Unauthorized - Invalid or missing API key |
| `404` | One or more location IDs not found |
