0

I am working with SCOPUS data via API to a Power BI Desktop to retrieve a search of a list of author IDs, but just 25 papers (the first page) out of more than 800 documents were retrieved in the Desktop. This is the link of SCOPUS API.

karel
  • 5,489
  • 46
  • 45
  • 50

1 Answers1

0

The responses from the API are, by default, limited to 25 results per page.

The top of the Response Body contains details of the results you are receiving, the pertinent details are:

"opensearch:totalResults": How many articles your search returned
"opensearch:startIndex": What page of the results you are currently on
"opensearch:itemsPerPage": How many results per page there are.  
"@searchTerms": Your query
"@startPage": What page of the results your query started on (default is 0)

In order to receive more than 25 results you will need to include pagination in your requests, by increasing the startPage="0" parameter incrementally.