(from github.com/qmaxquique)
Hi, I’m trying to use the JSON API to get results programmatically.
When I post to http://localhost:8081/json/?q=word&num=10
I get the expected JSON output like this
{
"response": {
"version": 11,
"status": 0,
"q": "array",
"query_id": "4bf66142a6614cc19d120a921b421e3a",
"exec_time": 0.03,
"query_time": 5,
"page_size": 10,
"page_number": 1,
"record_count": 168,
"page_count": 17,
"result": [ ... ]
}
}
I’m wondering how to get the next page or/and how to specify a page number of my search.
I’ve tried something like: http://localhost:8081/json/?q=word&pn=2&num=10
but it didn’t work.
Thanks!!