---
title: "Get request"
method: GET
path: "/kitchen-sink/http-methods/get"
tags: ["🚰 Kitchen Sink"]
---

# Get request

`GET /kitchen-sink/http-methods/get`

The `GET` method is used to retrieve or fetch a representation of a resource from a server.

It is a **safe** and **idempotent** operation, meaning it should not have any side effects on the server's data.

`GET` requests are read-only and should not modify the state of the server or its resources.

**Typical Usage:** `GET` requests are commonly used to retrieve data from a server.

_**For example,**_

fetching a user's profile information, retrieving a list of products, or fetching specific data based on query parameters.

## Response `200`

Get request

- object
  - `data` object
    - `headers` object
      - `accept` string
      - `accept-encoding` string
      - `cache-control` string
      - `connection` string
      - `cookie` string
      - `host` string
      - `postman-token` string
      - `user-agent` string
    - `method` string
    - `origin` string
    - `url` string
  - `message` string
  - `statusCode` number
  - `success` boolean

---

[API](https://skmtc.net/hiteshchoudhary-ssesph/apis/freeapi.md) · [All operations](https://skmtc.net/hiteshchoudhary-ssesph/apis/freeapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hiteshchoudhary-ssesph/freeapi/versions/a9f3a290e4dc/schema)
