> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Response

Detailed information about a network response received by the page.

## Definition

```graphql theme={null}
object Response {
  fromServiceWorker: Boolean
  headers: Headers
  json: JSON
  ok: Boolean
  serverAddress: ServerAddress
  request: Request
  securityDetails: SecurityDetails
  status: Int
  statusText: String
  text: String
  url: URL
}
```

## Fields

### `fromServiceWorker`

[Boolean](/reference/graphql/scalars/boolean)

Indicates if the response was served from a service worker.

### `headers`

[Headers](/reference/graphql/scalars/headers)

HTTP headers associated with the response.

### `json`

[JSON](/reference/graphql/scalars/json)

The response body parsed as JSON, if applicable. Accessing this might consume the response body.

### `ok`

[Boolean](/reference/graphql/scalars/boolean)

Whether the response was successful (status code 200-299).

### `serverAddress`

[ServerAddress](/reference/graphql/objects/server-address)

The IP address and port of the server that provided the response.

### `request`

[Request](/reference/graphql/objects/request)

The request that led to this response.

### `securityDetails`

[SecurityDetails](/reference/graphql/objects/security-details)

Security details of the connection, such as SSL/TLS certificate information.

### `status`

[Int](/reference/graphql/scalars/int)

The HTTP status code of the response (e.g., 200, 404).

### `statusText`

[String](/reference/graphql/scalars/string)

The HTTP status text of the response (e.g., "OK", "Not Found").

### `text`

[String](/reference/graphql/scalars/string)

The response body as plain text. Accessing this might consume the response body.

### `url`

[URL](/reference/graphql/scalars/url)

The URL of the response. This might differ from the request URL due to redirects.
