2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: HTTPResponse.json
|
|
|
|
---
|
|
|
|
|
|
|
|
# HTTPResponse.json() method
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class HTTPResponse {
|
|
|
|
json(): Promise<any>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<any>
|
|
|
|
|
|
|
|
Promise which resolves to a JSON representation of response body.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
This method will throw if the response body is not parsable via `JSON.parse`.
|