We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caaf55b commit 81bb67bCopy full SHA for 81bb67b
README.md
@@ -61,7 +61,19 @@ curl -X "POST" "http://localhost:8080/collections" \
61
```
62
63
Note: this "Collections Transaction" behavior is not part of the STAC API, but may be soon.
64
+
65
66
+## Collection pagination
67
68
+The collections route handles optional `limit` and `page` parameters. The `links` field that is
69
+returned from the `/collections` route contains a `next` link that can be used to get the next page
70
+of results.
71
72
+```shell
73
+curl -X "GET" "http://localhost:8080/collections?limit=1&page=2" \
74
+ -H 'Content-Type: application/json; charset=utf-8'
75
+}'
76
+```
77
78
## Testing
79
0 commit comments