In order to get results of a SERP request you make a GET request to the “/api/v1/queue/{id}” method supplying your apiKey and secret as get parameters(Check the Authentication section for more).
API Base | https://app.seoresearch.net |
API Method | /api/v1/queue/{id} |
Parameters | |
GET * | apiKey |
GET * | secret |
Example URL | https://app.seoresearch.net/api/v1/queue/8f330399-40e6-11ea-8c40-6c626d02600b?apiKey=your-api-key&secret=your-secret |
Example response
If your SERP query has been processed you will receive a similar response:
{ "status": "complete", "results": [ { "title": "Meta title in SERP", "fullUrl": "https:\/\/url-in-serp.com\/", "position": 1, "description": "Meta description in SERPĀ ..." }, ... { "title": "Meta title in SERP", "fullUrl": "http:\/\/url-in-serp\/", "position": 100, "description": "Meta description in SERP ..." } ], "completed": { "date": "2020-01-27 11:23:37.000000", "timezone_type": 3, "timezone": "Europe\/Helsinki" } }
If your request is still processing the response will be with a status: pending:
{ "status": "complete" }