ScavioScavio
제품가격문서
로그인시작하기
빠른 시작API 및 SDK에코시스템

Developer

  • OpenClaw 통합

에이전트 프레임워크

  • Agno 통합
  • CrewAI 통합
  • OpenAI Agents SDK 통합
  • Vercel AI SDK 통합
  • Mastra 통합
  • Composio 통합

자동화 및 로우코드

  • n8n 통합
  • Dify 통합

OpenAI Agents SDK 통합

Scavio는 OpenAI Agents SDK의 툴 패키지로 Python과 TypeScript 모두에서 제공됩니다. openai-agents-scavio를 설치하고 도구를 Agent에 넘겨주기만 하면 Google, YouTube, Amazon, Walmart, Reddit, TikTok, Instagram 전반에서 실시간 검색 기능을 사용할 수 있습니다 — 패키지 하나, API 키 하나로 가능합니다.

전제 조건

  1. OpenAI Agents SDK: openai-agents(Python 3.10 이상) 또는 @openai/agents(Node 22 이상).
  2. dashboard.scavio.dev에서 발급받은 Scavio API 키(신규 계정은 신용카드 없이 무료 크레딧을 받습니다).

설치

Bash
# Python
pip install openai-agents-scavio

# TypeScript
npm install openai-agents-scavio @openai/agents zod

API 키 설정

Bash
export SCAVIO_API_KEY=sk_live_your_key

도구는 환경 변수에서 SCAVIO_API_KEY를 읽으며, 팩토리에 api_key / { apiKey }를 전달할 수도 있습니다.

빠른 시작 (Python)

Python
from agents import Agent, Runner
from openai_agents_scavio import get_scavio_tools

agent = Agent(
    name="Search Assistant",
    instructions="Search the web, shopping sites, and social platforms with Scavio.",
    tools=get_scavio_tools(),  # reads SCAVIO_API_KEY
)

result = Runner.run_sync(agent, "Find the top budget laptops on Amazon")
print(result.final_output)

빠른 시작 (TypeScript)

import { Agent, run } from "@openai/agents";
import { buildScavioTools } from "openai-agents-scavio";

const agent = new Agent({
  name: "Search Assistant",
  instructions: "Search the web, shopping sites, and social platforms with Scavio.",
  tools: buildScavioTools(), // reads SCAVIO_API_KEY
});

const result = await run(agent, "Find the top budget laptops on Amazon");
console.log(result.finalOutput);

필요한 제공자만 활성화

Python
# Python
tools = get_scavio_tools(
    enable_google=True,
    enable_reddit=True,
    enable_amazon=False,
    enable_walmart=False,
    enable_youtube=False,
    enable_tiktok=False,
    enable_instagram=False,
)
// TypeScript
const tools = buildScavioTools({
  enableGoogle: true,
  enableReddit: true,
  enableAmazon: false,
  enableWalmart: false,
  enableYoutube: false,
  enableTiktok: false,
  enableInstagram: false,
});

개별 플래그와 상관없이 모든 도구를 등록하려면 all=True(Python) 또는 { all: true }(TypeScript)를 전달하세요.

사용 가능한 도구

두 패키지 모두 Scavio 엔드포인트마다 하나씩 총 32개의 도구를 노출하며, 이름은 scavio_<provider>_<action> 형식입니다(예: scavio_google_search, scavio_amazon_product, scavio_reddit_post). 각 도구는 구조화된 Scavio JSON 응답을 반환합니다.

제공자도구
Googlescavio_google_search
Amazonscavio_amazon_search, scavio_amazon_product
Walmartscavio_walmart_search, scavio_walmart_product
YouTubescavio_youtube_search, scavio_youtube_metadata
Redditscavio_reddit_search, scavio_reddit_post
TikTok11개 도구(profile, posts, video, comments, search, hashtag, followers, ...)
Instagram12개 도구(profile, posts, reels, stories, post, comments, search, followers, ...)

MCP를 통해 모든 엔드포인트 사용

설치 없이 전체 Scavio API를 사용하려면, Agents SDK를 호스팅된 MCP 서버로 연결하세요:

Python
# Python
from agents import Agent
from agents.mcp.server import MCPServerStreamableHttp

server = MCPServerStreamableHttp(
    name="scavio",
    params={"url": "https://mcp.scavio.dev/mcp", "headers": {"x-api-key": "sk_live_..."}},
)
agent = Agent(name="Search Assistant", mcp_servers=[server])
// TypeScript
import { Agent, MCPServerStreamableHttp } from "@openai/agents";

const server = new MCPServerStreamableHttp({
  url: "https://mcp.scavio.dev/mcp",
  name: "scavio",
  requestInit: { headers: { "x-api-key": process.env.SCAVIO_API_KEY! } },
});
const agent = new Agent({ name: "Search Assistant", mcpServers: [server] });

크레딧 비용

대부분의 호출은 1 크레딧이 소요됩니다. Reddit과 Instagram은 2 크레딧, Google은 light_request가 설정되지 않은 경우 2 크레딧이 소요됩니다. 요금제 한도는 속도 제한 참조를, 재시도 지침은 오류 참조를 확인하세요.

리소스

  • OpenAI Agents SDK 문서
  • GitHub의 openai-agents-scavio (Python)
  • GitHub의 openai-agents-scavio (TypeScript)
  • Scavio API 빠른 시작
이전CrewAI 통합다음Vercel AI SDK 통합
ScavioScavio

AI 에이전트를 위한 실시간 검색 API. Google뿐만 아니라 모든 플랫폼을 검색하세요.

제품

  • 기능
  • 가격
  • 대시보드
  • 제휴 프로그램

개발자

  • 문서
  • API 참조
  • 빠른 시작
  • MCP 통합
  • Python SDK

대안

  • Tavily 대안
  • SerpAPI 대안
  • Firecrawl 대안
  • Exa 대안

도구

  • JSON 포맷터
  • cURL을 코드로
  • 토큰 카운터
  • 모든 도구

© 2026 Scavio. 모든 권리 보유.

Featured on TAAFT
서비스 이용약관개인정보 처리방침