For the complete documentation index, see llms.txt. This page is also available as Markdown.

分页

返回多个项目的请求可以进行分页。执行分页的标准方式是使用 GET 参数 - limitoffset。页码从 1 开始。

参数
描述
备注

limit

在此请求中要返回的记录数量

默认为 50。最小值为 1

offset

用于检索记录的起始位置。

默认为 0。最小值为 0

示例

$ curl -i https://api.example.com/v2/statistics/advertiser/sites?limit=5&offset=40

这有帮助吗?