> For the complete documentation index, see [llms.txt](https://docs.datajet-app.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.datajet-app.com/liquid/filters/file/url.md).

# url

{% hint style="info" %}
Deprecated. Use [storage\_write](/liquid/tags/storage_write.md) with url parameter.
{% endhint %}

Lets consider following code for HTTP task:

```javascript
{% assign file_url = "https://cdn.shopify.com/s/files/1/0062/1124/0007/files/paper-plane.png?v=1626373338" %}

{% json upload_options %}
  {
    "fileName": "user_provided_photo.png",
    "url": {{file_url | json }},
    "public": false
  }
{% endjson %}

{% assign file_result = upload_options | file %}

```

With following code your file will be transferred from url to your storage.
