[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Fetch](./puppeteer.protocol.fetch.md) > [RequestStage](./puppeteer.protocol.fetch.requeststage.md) ## Protocol.Fetch.RequestStage type Stages of the request to handle. Request will intercept before the request is sent. Response will intercept after the response is received (but before response body is received. Signature: ```typescript export type RequestStage = ('Request' | 'Response'); ```