You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Nixhub API lets you search over 1 million package versions for over 100,000 Nix packages. You can use the Nixhub API to search for packages, resolve historic versions, and then install them using Devbox or Nix. Nixhub is designed to be simple and easy to use, and is free to use for personal use.
26
+
The [**Nixhub**](https://www.nixhub.io) API lets you search over 1 million package versions for over 100,000 Nix packages. You can use the Nixhub API to search for packages, resolve historic versions, and then install them using Devbox or Nix. Nixhub is designed to be simple and easy to use, and is free to use for personal use.
26
27
27
28
Nixhub is a RESTful API that uses standard HTTP methods and status codes. Parameters are passed to the API as query parameters, and the API returns JSON responses. The current version does not make use of pagination, though this may be added in the future.
28
29
29
-
Nixhub exposes the following endpoints for searching and resolving packages:
30
+
The API is available for free for personal use, subject to rate limiting. If you need a higher rate limit or wish to use Devbox for a commercial project, you can [**request access to our paid tier**](https://form.typeform.com/to/hueeLe9S).
31
+
32
+
### Endpoints
30
33
31
-
-`v2/search` - Search for packages by name
32
-
-`v2/pkg` - Get details and version history for a specific package
33
-
-`v2/resolve` - Resolve a package name and version to a nixpkgs commit and attribute path.
34
+
Nixhub exposes the following endpoints for searching and resolving packages:
34
35
36
+
-[`v2/search`](./search-packages.api.mdx) - Search for packages by name
37
+
-[`v2/pkg`](./get-a-package.api.mdx) - Get details and version history for a specific package
38
+
-[`v2/resolve`](./resolve-a-package-version.api.mdx) - Resolve a package name and version to a nixpkgs commit and attribute path.
35
39
36
40
### Rate Limits
37
41
@@ -43,7 +47,15 @@ In order to prevent abuse, personal use of the API is subject to rate limits. AP
43
47
44
48
If the pool is empty, the API will return a `429 Too Many Requests` status code.
45
49
46
-
If you have a use case that requires a higher rate limit or would like to use the API for commercial purposes, please Contact Us.
50
+
:::tip
51
+
52
+
If you have a use case that requires a higher rate limit or would like to use the API for commercial purposes, please fill out [**this form**](https://form.typeform.com/to/hueeLe9S) to request access.
53
+
54
+
:::
55
+
56
+
### Nixhub for Enterprise
57
+
58
+
Nixhub provides an index of publicly available packages from the [Nixpkgs](https://github.com/nixos/nixpkgs) repository. If you're interested in using Nixhub to index and install private packages or Flakes for your team, we'd love to chat with you. You can request a meeting [**with our team**](https://calendly.com/d/cprm-dq6-y9y/nixhub-enterprise-chat)
47
59
48
60
### Versioning
49
61
@@ -55,5 +67,3 @@ The API is versioned using a `v2` prefix in the URL. All `v2` endpoints are cons
55
67
*[Get Package Details](./get-a-package.api.mdx) - Get details and version history for a specific package
56
68
*[Resolve Package](./resolve-a-package-version.api.mdx) - Resolve the latest available package for a given name and version string
0 commit comments