[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Fetch](./puppeteer.protocol.fetch.md) > [RequestPattern](./puppeteer.protocol.fetch.requestpattern.md) ## Protocol.Fetch.RequestPattern interface Signature: ```typescript export interface RequestPattern ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [requestStage](./puppeteer.protocol.fetch.requestpattern.requeststage.md) | [RequestStage](./puppeteer.protocol.fetch.requeststage.md) | Stage at wich to begin intercepting requests. Default is Request. | | [resourceType](./puppeteer.protocol.fetch.requestpattern.resourcetype.md) | [Network.ResourceType](./puppeteer.protocol.network.resourcetype.md) | If set, only requests for matching resource types will be intercepted. | | [urlPattern](./puppeteer.protocol.fetch.requestpattern.urlpattern.md) | string | Wildcards ('\*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to "\*". |