> For the complete documentation index, see [llms.txt](https://kohttp.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kohttp.gitbook.io/docs/core/asynchronous-calls/async-get.md).

# async GET

## **String.httpGetAsync() extension function**

This function starts a new coroutine with *Unconfined* dispatcher.

```kotlin
val response: Deferred<Response> = "https://google.com/search?q=iphone".httpGetAsync()
```

## **httpGetAsync call**

You can use same syntax as in [GET](/docs/core/synchronous-calls/get.md)

```kotlin
val response: Deferred<Response> = httpGetAsync { }
```
