---
title: from url
categories: |
formats
version: 0.104.0
formats: |
Parse url-encoded string as a record.
usage: |
Parse url-encoded string as a record.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `from url` for [formats](/commands/categories/formats.md)
<div class='command-title'>Parse url-encoded string as a record.</div>
## Signature
```> from url {flags} ```
## Input/output types:
| input | output |
| ------ | ------ |
| string | record |
## Examples
Convert url encoded string into a record
```nu
> 'bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter' | from url
╭────────┬──────────╮
│ bread │ baguette │
│ cheese │ comté │
│ meat │ ham │
│ fat │ butter │
╰────────┴──────────╯
```