v1

latestOpenAPI 3.0.3raw.githubusercontent.com2024-10-2916802.4 MB
🚰 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

messagestring
statusCodenumber
successboolean

Example response

{
  "data": {
    "cookies": {
      "foo": "bar"
    }
  },
  "message": "Cookies returned",
  "statusCode": 200,
  "success": true
}