🚰 Kitchen Sink
Get query parameters
The API endpoint provides the capability to retrieve the query parameters being supplied in the URL.
When accessing this endpoint, you can retrieve and access the values of the query parameters included in the URL.
This functionality allows you to extract and utilize the information provided as query parameters for further processing or customization within your application.
get/kitchen-sink/request/query-parameter
Query parameters
query1string
Example:value1
query2string
Example:value2
query3string
Example:value3
Response
Get query parameters
Example response
{
"data": {
"query1": "value1",
"query2": "value2",
"query3": "value3"
},
"message": "Query parameters caught successfully",
"statusCode": 200,
"success": true
}