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.

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:

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

Last updated