> For the complete documentation index, see [llms.txt](https://docs.whisk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.whisk.com/master/tips/multiple-ids-request.md).

# Multiple IDs request

We provide a convenient way to get a batch of different nodes. You can provide `?ids` parameter with the object IDs of those nodes. You also can use URLs with node ids simultaneously.

```bash
curl "https://graph.whisk.com/v1/?ids=10343992,https%3A%2F%2Fwww.bbcgoodfood.com%2Frecipes%2Fegg-fried-rice" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer <Access-Token>"
```

It will return a response for each id or URL like this:

```javascript
{
  "10343992": {
    "field": "..."
  },
  "https://www.bbcgoodfood.com/recipes/egg-fried-rice": {
    "field": "..."
  }
}
```
