Directory of
Internet
Recipes
& Cocktails
Takes a search query and list size then returns results in JSON format
Usage:
/api/v1/webpages.php?query=[QUERY]&limit=[LIMIT]&offset=[OFFSET]
Where
[QUERY] = The search query
[LIMIT] = The maximum number of results
[OFFSET] = The starting point of the results
So if you want to split results into pages of 20 results, you set 'limit=20' for page 1, 'limit=20&offset=20' for page 2, 'limit=20&offset=40' for page 3, and so on...
Click here for an exampleReturn Home