diff --git a/docs/api-limits.mdx b/docs/api-limits.mdx new file mode 100644 index 000000000..3bdfded0c --- /dev/null +++ b/docs/api-limits.mdx @@ -0,0 +1,15 @@ +--- +title: API limits +--- + +The Wave service implements API rate limits for API calls. Authenticated users have higher rate limits than anonymous users. + +If an access token is provided, the following rate limits apply: + +- 100 container builds per hour +- 1,000 container pulls per minute + +If an access token isn't provided, the following rate limits apply: + +- 25 container builds per day +- 250 container pulls per hour diff --git a/docs/api.mdx b/docs/api.mdx index ca52843f3..93e056328 100644 --- a/docs/api.mdx +++ b/docs/api.mdx @@ -4,20 +4,6 @@ title: API reference This page summarizes the API provided by the Wave container service. -**API limits** - -The Wave service implements API rate limits for API calls. Authenticated users have higher rate limits than anonymous users. - -If an access token is provided, the following rate limits apply: - -- 100 container builds per hour -- 1,000 container pulls per minute - -If an access token isn't provided, the following rate limits apply: - -- 25 container builds per day -- 250 container pulls per hour - ## POST `/container-token` Deprecated endpoint allows you to submit a request to access a private container registry via Wave, or build a container image on-the-fly with a Dockerfile or Conda recipe file. diff --git a/docs/sidebar.json b/docs/sidebar.json index e41da8226..188d85361 100644 --- a/docs/sidebar.json +++ b/docs/sidebar.json @@ -18,7 +18,8 @@ "items": [ "cli/index", "cli/reference", - "api" + "api", + "api-limits" ] }, "faq"