← 返回
未分类 中文

Vatgentic

Instant EU VAT validation with Lightning Bitcoin. 10 sats per lookup. No subscriptions.
即时欧盟增值税验证,使用闪电比特币;每次查询 10 聪;无需订阅。
mcclawd mcclawd 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 355
下载
💾 0
安装
1
版本
#latest

概述

VatGentic ⚡ Instant VAT Validation

Lightning-fast EU VAT validation. Lightning payments.

Validate any EU VAT number in seconds. Get company name, address, and validity status.

10 sats per validation (~$0.01). No subscriptions. No signup.


Requirements

⚠️ You need Lightning Bitcoin to use this service.

  • Pay via Lightning Network (Bitcoin's payment layer)
  • Fast, global, no credit cards
  • Perfect for AI agents and automation

Quick Start

1. Set the API endpoint

export VATGENTIC_API_URL="https://fair-earwig.pikapod.net"

2. Validate a VAT number

import requests
import os

# Submit VAT number
response = requests.post(
    f"{os.environ['VATGENTIC_API_URL']}/vat/request",
    json={"vatNumber": "LU26375245", "amountSats": 10}
)
data = response.json()

# Output: Lightning invoice details
print(data)

3. Pay the Lightning invoice

# Invoice from response:
# - bolt11: Lightning invoice string
# - checkout_link: Browser payment
# - amount_sats: 10

# Pay with any Lightning wallet

4. Get your result

After payment completes, poll for the result:

# Poll for completion
import time
for _ in range(15):
    status = requests.get(f"{os.environ['VATGENTIC_API_URL']}/vat/status/{data['request_id']}")
    result = status.json()
    if result['status'] == 'completed':
        print(result['vat_result'])
        break
    time.sleep(2)

API Reference

Request Validation

POST /vat/request

curl -X POST $VATGENTIC_API_URL/vat/request \
  -H "Content-Type: application/json" \
  -d '{"vatNumber": "LU26375245"}'

Response:

{
  "request_id": "vat_1776348560582_abc123",
  "status": "pending_payment",
  "amount_sats": 10,
  "bolt11": "lnbc100n1p5xyz...",
  "checkout_link": "https://pay.example.com/i/abc123"
}

Check Status

GET /vat/status/{request_id}

curl $VATGENTIC_API_URL/vat/status/vat_1776348560582_abc123

Response (completed):

{
  "status": "completed",
  "vat_result": {
    "valid": true,
    "country_code": "LU",
    "company_name": "Example S.à r.l.",
    "company_address": "123 Rue Example, Luxembourg"
  }
}

Pricing

10 sats per validation (~$0.01 USD)

Lightning Network only. Fast, private, global.


Example: Agent Integration

import requests, os, time

def validate_vat(vat_number):
    """Validate VAT and return company details."""
    url = os.environ['VATGENTIC_API_URL']
    
    # Submit request
    resp = requests.post(f'{url}/vat/request', 
                         json={'vatNumber': vat_number})
    req = resp.json()
    
    # Pay invoice (manual or automated via Lightning wallet)
    print(f"Pay {req['amount_sats']} sats: {req['checkout_link']}")
    
    # Wait for completion
    for _ in range(15):
        status = requests.get(f"{url}/vat/status/{req['request_id']}")
        result = status.json()
        if result['status'] == 'completed':
            return result['vat_result']
        time.sleep(2)
    
    raise TimeoutError("Validation timeout")

# Use it
company = validate_vat("LU26375245")
print(f"✅ Valid: {company['valid']}")
print(f"📦 {company['company_name']}")

Supported Countries

All 27 EU member states:

  • Austria (AT), Belgium (BE), Bulgaria (BG), Croatia (HR)
  • Cyprus (CY), Czech Republic (CZ), Denmark (DK), Estonia (EE)
  • Finland (FI), France (FR), Germany (DE), Greece (EL)
  • Hungary (HU), Ireland (IE), Italy (IT), Latvia (LV)
  • Lithuania (LT), Luxembourg (LU), Malta (MT), Netherlands (NL)
  • Poland (PL), Portugal (PT), Romania (RO), Slovakia (SK)
  • Slovenia (SI), Spain (ES), Sweden (SE)

What You Get

Each validation returns:

  • ✅ Validity status (valid/invalid)
  • ✅ Company name (if registered)
  • ✅ Company address (if registered)
  • ✅ VAT number format verification
  • ✅ Country code

Data source: Official EU VIES database.


Why Lightning?

  • Instant - Results in seconds, not days
  • 🌍 Global - No geographic restrictions
  • 💰 Micropayments - Pay per use, no subscriptions
  • 🤖 Agent-friendly - Machines can pay machines

Support

Docs: https://docs.vatgentic.com

Status: https://status.vatgentic.com

Contact: support@vatgentic.com


VatGentic — VAT validation for the Bitcoin era ⚡

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 15:29 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

professional

Stock Analysis

udiedrichsen
{"answer":"基于雅虎财经数据,分析股票与加密货币。支持投资组合管理、自选股预警、股息分析、8维评分、热门趋势扫描及传闻/早期信号探测。适用于股票分析、持仓追踪、财报异动、加密监控、热门股追踪或提前发掘非主流传闻。"}
★ 277 📥 57,454
professional

All-Market Financial Data Hub

financial-ai-analyst
基于东方财富数据库,支持自然语言查询金融数据,覆盖A股、港股、美股、基金、债券等资产,提供实时行情、公司信息、估值、财务报表等,适用于投资研究、交易复盘、市场监控、行业分析、信用研究、财报审计、资产配置等场景,满足机构与个人需求。返回结果为
★ 122 📥 41,356
dev-programming

Simplelogin Cli

mcclawd
使用命令行创建和管理 SimpleLogin 邮件别名,安全私密地保护真实邮箱。
★ 1 📥 585