🚰 Kitchen Sink
Get cookies
The API endpoint allows you to retrieve the cookies sent by the client as part of the request.
When accessing this endpoint, you will receive the cookies that were included in the request headers from the client.
This functionality enables you to access and utilize the cookie data sent by the client for various purposes, such as session management, authentication, or personalization within your application.
get/kitchen-sink/cookies/get
Response
Get cookies
Example response
{
"data": {
"cookies": {
"foo": "bar"
}
},
"message": "Cookies returned",
"statusCode": 200,
"success": true
}