NEW Browse AI tools across categories — updated daily. See what's new →

Lnget

HTTP client with automatic L402 Lightning micropayment support

Version1.0.0
LicenseMIT
Token count~498
UpdatedJun 5, 2026

Install

Quick install

via npx skills · works with 57+ agents
npx skills add https://github.com/lightninglabs/lnget
Or pick agent:
npx skills add lightninglabs/lnget --agent claude-code
npx skills add lightninglabs/lnget --agent cursor
npx skills add lightninglabs/lnget --agent codex
npx skills add lightninglabs/lnget --agent opencode
npx skills add lightninglabs/lnget --agent github-copilot
npx skills add lightninglabs/lnget --agent windsurf
More install options

Shorthand — useful for multi-skill repos:

npx skills add lightninglabs/lnget

Manual — clone the repo and drop the folder into your agent's skills directory:

git clone https://github.com/lightninglabs/lnget.git
cp -r lnget ~/.claude/skills/
How to use: Once installed, ask your agent to "use the lnget skill" or describe what you want (e.g. "HTTP client with automatic L402 Lightning micropayment support"). Requires Node.js 18+.

lnget

HTTP client with automatic L402 Lightning micropayment support

---
name: lnget
version: 0.1.0
description: HTTP client with automatic L402 Lightning micropayment support
metadata:
openclaw:
requires:
bins: ["lnget"]
capabilities:


  • http_download

  • l402_payment

  • token_management

  • event_logging


interfaces:

  • cli

  • mcp


input_format: json
output_format: json
auth_methods:

  • lnd_macaroon

  • lnc_pairing

  • env_vars


---

lnget

Download files with automatic L402 Lightning micropayments. When a server
returns HTTP 402 Payment Required with an L402 challenge, lnget
automatically pays the Lightning invoice and retries the request.

Quick Reference

# JSON metadata + inline response body
lnget --json --print-body https://api.example.com/data.json

# Pipe raw response body to stdout
lnget -q https://api.example.com/data.json | jq .
lnget -o - https://api.example.com/data.json

# Preview payment without executing
lnget --dry-run https://api.example.com/paid-endpoint

# Agent-first JSON input
lnget --json --params '{"url": "https://api.example.com/data", "max_cost": 500}'

# Introspect CLI schema
lnget schema --all

# Manage tokens
lnget tokens list --json --fields domain,amount_sat

# Check Lightning backend
lnget ln status --json

Key Rules

  1. Always use --json for machine-readable output
  2. Use --print-body with --json to get response content inline
  3. Use --dry-run before making payments
  4. Use -q or -o - when you only want the raw response body
  5. Use --fields to limit output to needed fields
  6. Use --force on destructive commands (tokens clear)
  7. Check lnget schema <command> for parameter details

Full skill documentation

See skills/lnget/SKILL.md for comprehensive usage guide.

---

Source: https://github.com/lightninglabs/lnget
Author: lightninglabs
Discovered via: skillsdirectory.com
Genre: documentation

SKILL.md source

---
name: lnget
description: HTTP client with automatic L402 Lightning micropayment support
---

# lnget

HTTP client with automatic L402 Lightning micropayment support

---
name: lnget
version: 0.1.0
description: HTTP client with automatic L402 Lightning micropayment support
metadata:
  openclaw:
    requires:
      bins: ["lnget"]
    capabilities:
      - http_download
      - l402_payment
      - token_management
      - event_logging
    interfaces:
      - cli
      - mcp
    input_format: json
    output_format: json
    auth_methods:
      - lnd_macaroon
      - lnc_pairing
      - env_vars
---

# lnget

Download files with automatic L402 Lightning micropayments. When a server
returns HTTP 402 Payment Required with an L402 challenge, lnget
automatically pays the Lightning invoice and retries the request.

## Quick Reference

```bash
# JSON metadata + inline response body
lnget --json --print-body https://api.example.com/data.json

# Pipe raw response body to stdout
lnget -q https://api.example.com/data.json | jq .
lnget -o - https://api.example.com/data.json

# Preview payment without executing
lnget --dry-run https://api.example.com/paid-endpoint

# Agent-first JSON input
lnget --json --params '{"url": "https://api.example.com/data", "max_cost": 500}'

# Introspect CLI schema
lnget schema --all

# Manage tokens
lnget tokens list --json --fields domain,amount_sat

# Check Lightning backend
lnget ln status --json
```

## Key Rules

1. Always use `--json` for machine-readable output
2. Use `--print-body` with `--json` to get response content inline
3. Use `--dry-run` before making payments
4. Use `-q` or `-o -` when you only want the raw response body
5. Use `--fields` to limit output to needed fields
6. Use `--force` on destructive commands (tokens clear)
7. Check `lnget schema <command>` for parameter details

## Full skill documentation

See `skills/lnget/SKILL.md` for comprehensive usage guide.


---

**Source**: https://github.com/lightninglabs/lnget
**Author**: lightninglabs
**Discovered via**: skillsdirectory.com
**Genre**: documentation

Related skills 6

env-and-assets-bootstrap

★ Featured

RigorPilot setup skill for README-first deep learning repo reproduction. Use when the task is specifically to prepare a conservative conda-first environment, checkpoint and dataset path assumptions, cache location hints, and setup notes before any run on a README-documented repository. Do not use for repo scanning, full orchestration, paper interpretation, final run reporting, or generic environment setup that is not tied to a specific reproduction target.

lllllllama 127k
Document Processing

firecrawl

★ Featured

Search, scrape, and interact with the web via the Firecrawl CLI. Use this skill whenever the user wants to search the web, find articles, research a topic, look something up online, scrape a webpage, grab content from a URL, get data from a website, crawl documentation, download a site, or interact with pages that need clicks or logins. Also use when they say "fetch this page", "pull the content from", "get the page at https://", or reference external websites. This provides real-time web sea...

firecrawl 59k
Document Processing

OpenAI / spreadsheet

★ Featured Official

Create, edit, analyze, and visualize spreadsheets with formulas

OpenAI 31
AI & ML

Anthropic / pdf

★ Featured Official

Extract text, create PDFs, and handle forms

Anthropic 30
Document Processing

OpenAI / doc

★ Featured Official

Read, create, and edit .docx documents with formatting and layout fidelity

OpenAI 22
AI & ML

VoltAgent / voltagent-docs-bundle

★ Featured Official

Lookup embedded docs from @voltagent/core for version-matched documentation

VoltAgent 21
Development