#openapi #tui #swagger

app apisnip

A terminal user interface (TUI) tool for trimming OpenAPI specifications down to size ✂️

10 stable releases

new 1.4.3 Apr 3, 2025
1.3.3 Apr 3, 2025
1.3.2 Apr 2, 2025
1.2.1 Apr 2, 2025
1.1.1 Apr 1, 2025

#130 in Text processing

Download history 87/week @ 2025-03-26

87 downloads per month

MIT license

61KB
1K SLoC

ApiSnip ✂️

A terminal user interface (TUI) tool for trimming OpenAPI specifications down to size. Apisnip allows you to interactively select which endpoints to keep in your API specification, making it easy to generate smaller, focused API surfaces.

ApiSnip demo

✨ Features

  • 🖥️ Interactive TUI interface for selecting endpoints
  • 📄 Support for both JSON and YAML OpenAPI specifications
  • 🔗 Preserves all necessary references and components
  • 🧩 Maintains original specification structure and order
  • ⌨️ Keyboard and mouse navigation
  • 🌈 Beautiful syntax highlighting for HTTP methods
  • 🔍 Powerful fuzzy search with weighted scoring
  • 🖱️ Click-to-select in the table view
  • ⚡ Fast navigation with Page Up/Down and Home keys
  • 🚀 Optimized for large API specifications
  • 🌐 Support for remote API specifications via URLs
  • 📊 Selected endpoints automatically grouped at the top
  • 🌓 Automatic detection of system theme (light/dark mode)

🔧 Installation

cargo install apisnip

📖 Usage

apisnip input [output.yaml]

Arguments

  • input: The input OpenAPI specification (required)
    • Can be a local file path (JSON or YAML)
    • Can be a URL to a remote specification (e.g., https://example.com/api.yaml)
  • output.yaml: The output file path (optional, defaults to "apisnip.out.yaml")

🎮 Controls

  • or k: Move selection up
  • or j: Move selection down
  • Space: Toggle selection of current endpoint ✂️
  • /: Activate search mode 🔍
  • Esc: Exit search mode
  • Page Up: Scroll up one page
  • Page Down: Scroll down one page
  • Home: Jump to the top of the list 🔝
  • w: Write selected endpoints to output file and quit
  • q: Quit without saving
  • Mouse scroll: Navigate through endpoints
  • Mouse click: Select endpoint

🔍 Search Features

ApiSnip includes a powerful fuzzy search:

  • Press / to enter search mode
  • Type to filter endpoints by path and description
  • Results are ranked with path matches weighted higher than description matches
  • Selected items always appear at the top of results
  • Best matches appear first within their selection group
  • Selected items remain selected between searches
  • Search is case-insensitive
  • Press Esc to exit search and restore the full list

📋 User Interface

ApiSnip provides an intuitive interface for managing API endpoints:

  • Smart sorting: Selected endpoints automatically move to the top of the list for better visibility
  • Context preservation: When selecting items, the focus follows your natural workflow, avoiding disruptive jumps
  • Detailed view: View comprehensive endpoint details in the bottom panel
  • Selection counter: Track how many endpoints you've selected with the counter in the detail view
  • Adaptive theming: Automatically detects your system's light/dark mode preference and adjusts colors to ensure optimal readability in any environment

📋 Examples

# Read from local file and write to output.yaml
apisnip input.yaml output.yaml

# Read from local JSON file and write to apisnip.out.yaml
apisnip input.json

# Read from remote URL and write to custom output file
apisnip https://petstore.swagger.io/v2/swagger.json my-petstore-api.yaml

🛠️ Development

Building from Source

git clone https://github.com/Tuurlijk/apisnip.git
cd apisnip
cargo build --release

📝 Todo

  • Enable user specified default styles or some sort of theming configuration
  • Replace linear color gradient with smooth sine wave gradient for more natural visual transitions

Dependencies

~18–33MB
~517K SLoC