# Url

Get the URL of an Asset, Page, Entry, or Taxonomy term from an ID.

```yaml
hero_image: 98hf98-sfq4h8f94-fd9s0fj0l
```

::tabs

::tab antlers
```antlers
{{ hero_image | url }}
```
::tab blade
```blade
{{ Statamic::modify($hero_image)->url() }}
```
::

```html
/assets/flying-bacon-wearing-a-batman-mask.jpg
```

:::tip
If your field is defined in a [Blueprint](/blueprints.md), Statamic would have already used [augmentation](/augmentation.md) to convert the ID to an object. You can access the URL like so:

```
{{ hero_image:url }}
```
:::
