Files
stupid-apis/doc/api.md
2025-08-13 13:05:31 +02:00

186 lines
2.5 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 📄 API Documentation **Stupid APIs**
## Base URL
```
http://localhost:3000
```
---
## 1⃣ POST `/sort`
Sorts an array (numeric or alphabetical) and returns the sorted array.
### Request
**URL:**
```
POST /sort
```
**Headers:**
```
Content-Type: application/json
```
**Body Example:**
```json
{
"array": [3, 1, 4, 1, 5, 9]
}
```
### Successful Response
```json
{
"sortedArray": [1, 1, 3, 4, 5, 9]
}
```
### Error Responses
| Status Code | Description |
| ----------- | ----------------------------------------------- |
| `400` | Request body missing or `array` is not an array |
| `500` | Unexpected server error |
---
## 2⃣ POST `/is-odd`
Checks if a given number is odd.
### Request
**URL:**
```
POST /is-odd
```
**Headers:**
```
Content-Type: application/json
```
**Body Example:**
```json
{
"number": 7
}
```
### Successful Response
```json
{
"number": 7,
"isOdd": true
}
```
**Example with an even number:**
```json
{
"number": 4,
"isOdd": false
}
```
### Error Responses
| Status Code | Description |
| ----------- | ------------------------------------------------------ |
| `400` | Request body missing or `number` is not a valid number |
| `500` | Unexpected server error |
---
## 3⃣ POST `/is-even`
Checks if a given number is even.
### Request
**URL:**
```
POST /is-even
```
**Headers:**
```
Content-Type: application/json
```
**Body Example:**
```json
{
"number": 4
}
```
### Successful Response
```json
{
"number": 4,
"isEven": true
}
```
**Example with an odd number:**
```json
{
"number": 7,
"isEven": false
}
```
### Error Responses
| Status Code | Description |
| ----------- | ------------------------------------------------------ |
| `400` | Request body missing or `number` is not a valid number |
| `500` | Unexpected server error |
---
## 📌 Example Usage with `curl`
### Sort an array (Linux/macOS)
```bash
curl -X POST http://localhost:3000/sort \
-H "Content-Type: application/json" \
-d '{"array":[3,1,4,1,5,9]}'
```
### Check if odd
```bash
curl -X POST http://localhost:3000/is-odd \
-H "Content-Type: application/json" \
-d '{"number":7}'
```
### Check if even
```bash
curl -X POST http://localhost:3000/is-even \
-H "Content-Type: application/json" \
-d '{"number":4}'
```