Jetify Search API

The Search API from Jetify — 1 operation(s) for search.

Operations 1

GET /search Search Packages #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/jetify-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

jetify-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nixhub Pkg Search API
  version: 2.0.0
  description: The Nixhub API lets you search over 1 million package versions for over 100,000 Nix packages. Search for packages, look up version history, and resolve a package name + version to a nixpkgs commit and flake installable for use with Devbox or Nix. Free for personal use, subject to IP-based rate limiting. Built and operated by Jetify.
  contact:
    name: Jetify
    url: https://www.jetify.com/docs/nixhub/
  termsOfService: https://www.jetify.com/legal/terms
servers:
- url: https://search.devbox.sh/v2
  description: Nixhub production API (v2)
tags:
- name: Search
paths:
  /search:
    get:
      operationId: searchPackages
      summary: Search Packages
      description: Search for packages in the Nixpkgs repository using a search query. The response includes a list of package names along with their description. To get available versions and installables for a package, use the returned name with /pkg.
      parameters:
      - name: q
        in: query
        required: true
        description: Search query.
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
        '400':
          description: 'Bad Request: empty search query (set a ?q=<query> query parameter)'
        '404':
          description: Not Found
      tags:
      - Search
components:
  schemas:
    SearchResponse:
      type: object
      properties:
        query:
          type: string
          description: The search query sent to the /search endpoint.
        total_results:
          type: integer
          description: The total number of results for the search query.
        results:
          type: array
          description: A list of SearchResults that match the query. Empty if no results were found.
          items:
            $ref: '#/components/schemas/SearchResult'
    SearchResult:
      type: object
      properties:
        name:
          type: string
          description: The name of the package that matched the search query.
        summary:
          type: string
          description: A short description of the package.
        last_updated:
          type: string
          description: The last time this package was updated in the Nixpkgs repo.