-
Notifications
You must be signed in to change notification settings - Fork 1
siuying edited this page Oct 13, 2012
·
11 revisions
Get user data
{
"id": 1,
"name": "",
"followers_count": 0,
"created_at": "2012-10-11T17:32:14Z",
"updated_at": "2012-10-11T17:32:14Z",
"avatar_url": "http://placekitten.com/200/200"
}
List all items.
[
{
"id": 8,
"title": "item",
"desc": "item hhhh",
"price": "1.0",
"address": null,
"latitude": 22.2859671,
"longitude": 114.1905382,
"photos": [
],
"comments": [
]
},
{
"id": 9,
"title": "Little Cat",
"desc": "LOLCAT",
"price": "10000.0",
"address": null,
"latitude": 22.2860424,
"longitude": 114.1904425,
"photos": [
{
"small": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_thumb,h_300,w_300/v1350064881/pqpylo6rthe2qtsuesda.jpg",
"medium": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_thumb,h_600,w_600/v1350064881/pqpylo6rthe2qtsuesda.jpg",
"large": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_fit,h_1200,w_1200/v1350064881/pqpylo6rthe2qtsuesda.jpg"
}
],
"comments": [
{
"id": 1,
"comment": "I want that!!"
},
{
"id": 2,
"comment": "Yes Yes"
},
{
"id": 3,
"comment": "My precious!!"
},
{
"id": 4,
"comment": "Lolol"
},
{
"id": 5,
"comment": "Lololol"
}
]
}
]
Search nearby items.
- lat - latitue
- lon - longtitude
- distance - the radius of items
[
{
"id": 8,
"title": "item",
"desc": "item hhhh",
"price": "1.0",
"address": null,
"latitude": 22.2859671,
"longitude": 114.1905382,
"photos": [
],
"comments": [
]
},
{
"id": 9,
"title": "Little Cat",
"desc": "LOLCAT",
"price": "10000.0",
"address": null,
"latitude": 22.2860424,
"longitude": 114.1904425,
"photos": [
{
"small": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_thumb,h_300,w_300/v1350064881/pqpylo6rthe2qtsuesda.jpg",
"medium": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_thumb,h_600,w_600/v1350064881/pqpylo6rthe2qtsuesda.jpg",
"large": "http://a4.res.cloudinary.com/hvwz5zxen/image/upload/c_fit,h_1200,w_1200/v1350064881/pqpylo6rthe2qtsuesda.jpg"
}
],
"comments": [
{
"id": 1,
"comment": "I want that!!"
},
{
"id": 2,
"comment": "Yes Yes"
},
{
"id": 3,
"comment": "My precious!!"
},
{
"id": 4,
"comment": "Lolol"
},
{
"id": 5,
"comment": "Lololol"
}
]
}
]
Create a new item. (required user login)
- item - object of item, to be inserted
Returns created item, or 422 unprocessable entity.