-
Notifications
You must be signed in to change notification settings - Fork 20
/
README
39 lines (26 loc) · 848 Bytes
/
README
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
28
29
30
31
32
33
34
35
36
Kickstart
a simple API for Kickstarter.com
Usage:
projects = Kickstarter.by_category(:games, :page => 1)
# => returns back an array of projects from page 1
projects = Kickstarter.by_list(:ending_soon, :page => 2, :pages => 3)
# => returns back an array of 3 pages worth of projects, starting from page 2
A Kickstart::Project has the following attributes:
.name
.handle
.description
.url
.owner
.email
.thumbnail_url
.pledge_amount
.pledge_precent
.pledge_deadline
and methods:
(future)
.details => get more details from about the project, from the Project details page
Options:
:page => X # which page number of results to return. May be empty
:pages => Y # number of pages worth of results. Don't be stupid and request too many pages...
future:
* support filter by pledge_amount