-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainpage
More file actions
27 lines (27 loc) · 697 Bytes
/
mainpage
File metadata and controls
27 lines (27 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* written by Brian McCarthy */
curl -X GET http://localhost:3000/api/gifts
Output:
[
{
"id": "64b1f2e1a5b6c7d8e9f0a1b2",
"name": "Cozy Armchair",
"category": "Living",
"condition": "Like New",
"age_years": 2,
"posted_by": "user123",
"zipcode": "10001",
"date_added": "2023-07-15",
"description": "Very comfortable armchair, perfect for reading."
},
{
"id": "64b1f2e1a5b6c7d8e9f0a1b3",
"name": "Minimalist Desk",
"category": "Office",
"condition": "New",
"age_years": 1,
"posted_by": "user456",
"zipcode": "90210",
"date_added": "2023-07-20",
"description": "Clean design desk, great for small spaces."
}
]