# 🔍 Search
on some views we need to get data from APIs and view it as Object!, and that's what this component does when you search it does a query on the remote URL and returns with an array of objects that you can select any object and it's filled with the object not just the ID you can use it like this ```markup

@{{form.account_id.name}}
@{{form.account_id.email}}
@{{form.account_id.phone}}
@{{form.account_id.address}}
@{{form.account_id.zip}} @{{form.account_id.city}}
@{{form.account_id.country?form.account_id.country.name:''}}
```