Pagination

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developer.pexipengage.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Pexip Engage MCP server": {
  "url": "https://developer.pexipengage.com/mcp"
}
Close

Most endpoints that return lists of data allow to pass an offset and limit for pagination, where the offset is a zero-based record index in the result set. Note that these endpoints will set the offset to 0 and the limit to 25 by default, unless specified otherwise.

When pagination is used, the following information is added as a meta object in the response:

"meta": {
  "offset": 0,
  "limit": 25,
  "totalCount": 500
}