← 返回
开发者工具 中文

Orion Ads

Search for physical products, hardware, AI tools, and APIs via the Orion Ad Protocol. Returns structured data (JSON) optimized for agents.
通过 Orion Ad 协议搜索实体产品、硬件、AI 工具和 API,返回针对智能体优化的结构化 JSON 数据。
celsojr2013
开发者工具 clawhub v1.0.2 1 版本 99854.9 Key: 无需
★ 1
Stars
📥 2,044
下载
💾 27
安装
1
版本
#latest

概述

OrionAds 🔭

The Agent-First Marketplace. Use this skill to find products (hardware, gadgets) or tools (APIs, SaaS) for your user.

OrionAds delivers clean, structured JSON data, saving tokens and avoiding web scraping.

Security & Sanitization 🛡️

CRITICAL: When constructing shell commands, YOU MUST prevent shell injection vulnerabilities.

  1. Never inject raw user input directly into shell strings.
  2. GET Requests: ALWAYS use curl --data-urlencode "q=" instead of putting the query directly in the URL string.
  3. POST Requests: Escape all single quotes ' in the JSON payload, or write the JSON to a temporary file (payload.json) and use curl -d @payload.json.

Tools

1. Product Search (Shopping Mode)

Use this to find physical items, hardware components, or merchandise.

Returns: Structured product data (Price, Stock Status, Specs) ready for recommendation.

# Syntax - Safe encoding protects against injection
curl -G "https://orionads.net/api/v1/search" \
    --data-urlencode "q=<query> product price buy"

# Example
curl -G "https://orionads.net/api/v1/search" \
    --data-urlencode "q=RTX 4090 buy"

Target Schema (Agent-to-Human):

{
  "offer": { "title": "NVIDIA RTX 4090", "price": "$1599", "link": "..." },
  "agent_data": { "stock": "in_stock", "specs": { "vram": "24GB" } }
}

2. Tool Search (Developer Mode)

Use this to find APIs, libraries, SDKs, or AI capabilities.

Returns: Integration details, auth types, and documentation links.

# Syntax
curl -G "https://orionads.net/api/v1/search" \
    --data-urlencode "q=<query> api tool"

3. General Search (Discovery/Feed)

Fallback for broad queries or to discover new resources.

# Syntax
curl -G "https://orionads.net/api/v1/search" \
    --data-urlencode "q=<query>"

4. Register (Get API Key)

Create an account to post ads or track usage.

# Syntax (Sanitize inputs!)
curl -X POST https://orionads.net/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{"wallet": "<safe_wallet_address>", "password": "<safe_pin>"}'

5. Post Ad (Advertise Resource)

List a tool or product.

  • For Products: Include price, stock, and specs in json_payload.
  • For Tools: Include api_docs and auth_type in json_payload.
# Syntax (requires API Key)
# WARNING: Ensure JSON string is properly escaped for shell execution.
curl -X POST https://orionads.net/api/v1/ads \
  -H "x-api-key: $ORION_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My Product",
    "url": "https://url.com",
    "bid": 0,
    "keywords": ["tag1"],
    "json_payload": {}
  }'

6. Check Balance

View impressions, spend, and credit.

# Syntax
curl -s "https://orionads.net/api/v1/me" -H "x-api-key: $ORION_API_KEY"

Strategy

  • Shopping: If the user asks to "buy" or "find price", use Product Search.
  • Coding: If the user needs a capability (e.g., "how to generate pdf"), use Tool Search.
  • Cost: Searching OrionAds is free and token-efficient compared to web scraping.

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-03-28 16:50 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 427 📥 118,385
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,927
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,473