nerdexam
Cisco

200-901 · Question #22

An application calls a REST API and expects a result set of more than 550 records, but each time the call is made, only 25 are returned. Which feature limits the amount of data that is returned by…

The correct answer is A. pagination. Pagination is the API feature that limits the number of records returned per response and provides a mechanism (e.g., page numbers, offsets, or cursor tokens) to retrieve subsequent pages. Returning only 25 records at a time when 550+ exist is a classic pagination pattern. Rate…

Understanding and Using APIs

Question

An application calls a REST API and expects a result set of more than 550 records, but each time the call is made, only 25 are returned. Which feature limits the amount of data that is returned by the API?

Options

  • Apagination
  • Bpayload limit
  • Crate limiting
  • Dservice timeouts

How the community answered

(27 responses)
  • A
    89% (24)
  • B
    7% (2)
  • C
    4% (1)

Explanation

Pagination is the API feature that limits the number of records returned per response and provides a mechanism (e.g., page numbers, offsets, or cursor tokens) to retrieve subsequent pages. Returning only 25 records at a time when 550+ exist is a classic pagination pattern. Rate limiting restricts how many API calls can be made in a time window, not the size of each response. Payload limit refers to request body size, not result sets. Service timeouts disconnect long-running calls.

Topics

#REST API#Pagination#API Data Retrieval

Community Discussion

No community discussion yet for this question.

Full 200-901 Practice