Requestly keeps a built-in cookie jar that captures cookies from API responses and replays them on later requests. This mirrors how a browser handles cookies, so you can reproduce session-based flows (login, then call protected endpoints) without copying values around by hand.Documentation Index
Fetch the complete documentation index at: https://docs.requestly.com/llms.txt
Use this file to discover all available pages before exploring further.
The cookie jar is shared across all your projects on this device. It is stored locally and never synced to the cloud, so session tokens stay on the machine that captured them. Switching projects or environments does not switch the jar.
Open the Cookie manager
Click Cookies in the footer
The Cookies button is in the application footer at the bottom of the window. Clicking it opens the Cookie manager modal.
How cookies are captured
When a response includes one or moreSet-Cookie headers, Requestly parses each cookie and stores it in the jar. You do not need to do anything to enable this. The next time you send a request whose URL matches the cookie’s domain and path, Requestly attaches the cookie to that request as a Cookie header.
Matching follows standard browser rules (RFC 6265):
- Cookies are matched on the request URL’s hostname and path.
- A cookie with
Domain=.example.comis sent toapi.example.com,www.example.com, and any other subdomain. - A cookie with no
Domainattribute is scoped to the exact host that set it. - Path scoping is enforced. A cookie with
Path=/apiis not sent to/.
If you set a
Cookie header manually on a request, your value wins. The jar will not overwrite a header you wrote yourself.Add a cookie manually
You can plant cookies in the jar without sending a request first. This is useful when you want to seed a session token from another tool, or when you are testing how an endpoint behaves under a specific cookie.Open the add cookie modal
In the Cookies tab, click the + button next to the search field. The tooltip reads Add cookie (any domain).To add a cookie scoped to a specific host that already appears in the list, click the + button on that host’s row instead. The modal title shows the host so you know which domain the cookie will land on.
Paste a Set-Cookie value
The modal accepts a single Supported attributes:
Set-Cookie header value, the same string a server would send. For example:Domain, Path, Expires, Max-Age, Secure, HttpOnly, SameSite, Partitioned. Hover the help icon next to the modal title for a quick reference.When Domain= is omitted, the cookie is scoped to the host shown in the modal title.Edit, delete, or clear cookies
Hover any cookie row to reveal its action buttons:- Edit cookie opens the same modal pre-filled with the existing
Set-Cookiestring. Change anything, then save. - Delete cookie removes a single cookie immediately.
- Clear cookies for this domain is the trash icon on a host row. It removes every cookie under that host after a confirmation prompt.
- Clear all cookies is the sweep icon next to the search field. It empties the entire jar after a confirmation prompt.
Find a cookie quickly
The search input at the top of the Cookies tab filters the list as you type. Search matches across host, name, and path, so you can locate a single cookie even when the jar holds hundreds of entries across many domains.Cookie row indicators
Each cookie row shows badges and icons that summarize its attributes:- An Expires date or Session label. Expired cookies show a red Expired badge but stay in the jar until you remove them.
- A lock icon means
Secureis set: the cookie is only sent over HTTPS. - A shield icon means
HttpOnlyis set: the cookie is hidden from scripts. - A SameSite badge (
Lax,Strict, orNone) reflects the cookie’sSameSiteattribute.
Allow scripts to read cookies
Pre and post-request scripts can read and write cookies, but only for domains you have explicitly allowed. This keeps a third-party request you import from accidentally exfiltrating cookies for an unrelated host.Add a host
Type a host (for example
api.example.com) into the input and click Add. The host appears in the list below.The allowlist only governs script access to the jar. Cookies are still captured from responses and attached to requests automatically regardless of whether their host is allowlisted.
What’s Next?
Authorization
Configure auth alongside cookies for full session reproduction
Request Headers
Override jar-attached cookies with a manual
Cookie headerScripts
Read and write cookies from pre and post-request scripts

