> 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/url-lookup.md).

# URL Lookup

Most objects can be discovered using their IDs, but sometimes you have only the URL of a resource. A canonical example is getting or extracting Recipe by url:

```bash
curl "https://graph.whisk.com/v1/?id=https%3A%2F%2Fwww.bbcgoodfood.com%2Frecipes%2Fomelette-pancakes-tomato-pepper-sauce" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer <Access-Token>"
```
