composio-scavio
Scavio real-time search tools for Composio.
Scavio is a single Search API over Google, YouTube, Amazon, Walmart, Reddit, TikTok, TikTok Shop, Instagram, X and LinkedIn. This package exposes 97 tools covering every live endpoint of all ten platforms as a Composio custom toolkit, so your agents can pull structured, up-to-date results across any Composio-supported framework (OpenAI, Anthropic, LangChain, CrewAI, and more).
Google v1 is gone.
/api/v1/googlewas retired on 2026-08-04 and now returns 410. Every Google tool here runs on/api/v2/google*and takes v2 params natively:gl(two-letter country),hl(language),google_domain,device, andstart.startis a 0-based result OFFSET, not a page number -- 0 is the first page, 10 the second, 20 the third. The oldcountry_code/language/pagearguments are removed rather than silently remapped, because mapping a page number ontostartfetches the wrong page. Google responses are also FLAT: there is nodatawrapper, and results areorganic_results[]withlinkandsnippet.
Amazon changed (breaking). The upstream provider moved in 2026-07:
domainis replaced bycountry, a two-letter marketplace code (us,gb-- the UK isgb, notuk--de,jp, ...), andsort_by,pages,category_id,merchant_id,language,currency,device,zip_codeandautoselect_variantare gone. The marketplace ignores all of them (sort_byreturns the identical unordered set for every value), so they are removed rather than kept as silent no-ops. Rank and filter results yourself.
Reddit search has no filters.
/reddit/searchaccepts onlyqueryandcursor; the API strips anything else, so the oldtypeandsortargs narrowed nothing and are removed. It returnsdata.resultswithnext_cursorandhas_more.SCAVIO_REDDIT_POSTreturns the post itself only -- comments are not included, useSCAVIO_REDDIT_POST_COMMENTSfor those. The subreddit and user feeds do returndata.posts.
Five LinkedIn endpoints are retired.
person/contact,company/people,company/jobs,search/peopleandsearch/postswere retired upstream and always answer 410 unbilled, so they are deliberately not registered as tools. UseSCAVIO_LINKEDIN_COMPANY(itsfeatured_employeesis a 4-6 person sample) instead of company/people, andSCAVIO_LINKEDIN_SEARCH_JOBSwith the company name instead of company/jobs.
Install
pip install composio-scavio
Setup
Get a Scavio API key from the Scavio Dashboard (new accounts get 50 one-time signup credits, no credit card; the free plan does not refill monthly). Set it as an environment variable or pass it directly.
export SCAVIO_API_KEY=sk_...
export COMPOSIO_API_KEY=... # from https://app.composio.dev
Usage
from composio import Composio
from composio_scavio import build_scavio_toolkit
composio = Composio()
# Build the toolkit; expose only the providers you need.
scavio = build_scavio_toolkit(
api_key="sk_...", # or rely on SCAVIO_API_KEY
enable_google=True,
enable_amazon=True,
enable_tiktok=False,
)
session = composio.create(
user_id="user_1",
experimental={"custom_toolkits": [scavio]},
)
result = session.tools.execute(
"SCAVIO_GOOGLE_SEARCH",
arguments={"query": "best search API for AI agents", "gl": "us", "hl": "en"},
)
print(result)
Pass all=True to register every tool regardless of the individual flags.
Tools
97 tools, all namespaced under the SCAVIO toolkit. Each provider is gated by an enable_* flag.
| Provider | Flag | Tools | Names |
|---|---|---|---|
enable_google |
14 | SCAVIO_GOOGLE_SEARCH, SCAVIO_GOOGLE_AI_MODE, SCAVIO_GOOGLE_MAPS_SEARCH, SCAVIO_GOOGLE_MAPS_PLACE, SCAVIO_GOOGLE_MAPS_REVIEWS, SCAVIO_GOOGLE_SHOPPING, SCAVIO_GOOGLE_SHOPPING_PRODUCT, SCAVIO_GOOGLE_SHOPPING_STORES, SCAVIO_GOOGLE_FLIGHTS, SCAVIO_GOOGLE_HOTELS, SCAVIO_GOOGLE_HOTELS_DETAIL, SCAVIO_GOOGLE_NEWS, SCAVIO_GOOGLE_TRENDS, SCAVIO_GOOGLE_TRENDING |
|
| YouTube | enable_youtube |
15 | SCAVIO_YOUTUBE_SEARCH, SCAVIO_YOUTUBE_SHORTS, SCAVIO_YOUTUBE_SUGGESTIONS, SCAVIO_YOUTUBE_VIDEO, SCAVIO_YOUTUBE_COMMENTS, SCAVIO_YOUTUBE_COMMENT_REPLIES, SCAVIO_YOUTUBE_TRANSCRIPT, SCAVIO_YOUTUBE_RELATED, SCAVIO_YOUTUBE_CHANNEL_SEARCH, SCAVIO_YOUTUBE_CHANNEL, SCAVIO_YOUTUBE_CHANNEL_VIDEOS, SCAVIO_YOUTUBE_CHANNEL_SHORTS, SCAVIO_YOUTUBE_CHANNEL_COMMUNITY, SCAVIO_YOUTUBE_CHANNEL_RESOLVE, SCAVIO_YOUTUBE_STREAMS |
| Amazon | enable_amazon |
3 | SCAVIO_AMAZON_SEARCH, SCAVIO_AMAZON_PRODUCT, SCAVIO_AMAZON_OFFERS |
| Walmart | enable_walmart |
2 | SCAVIO_WALMART_SEARCH, SCAVIO_WALMART_PRODUCT |
enable_reddit |
12 | SCAVIO_REDDIT_SEARCH, SCAVIO_REDDIT_SEARCH_SUGGESTIONS, SCAVIO_REDDIT_POST, SCAVIO_REDDIT_POST_COMMENTS, SCAVIO_REDDIT_COMMENT_REPLIES, SCAVIO_REDDIT_SUBREDDIT, SCAVIO_REDDIT_SUBREDDIT_POSTS, SCAVIO_REDDIT_USER, SCAVIO_REDDIT_USER_POSTS, SCAVIO_REDDIT_USER_COMMENTS, SCAVIO_REDDIT_POPULAR, SCAVIO_REDDIT_TRENDING |
|
| TikTok | enable_tiktok |
11 | SCAVIO_TIKTOK_PROFILE, SCAVIO_TIKTOK_USER_POSTS, SCAVIO_TIKTOK_VIDEO, SCAVIO_TIKTOK_VIDEO_COMMENTS, SCAVIO_TIKTOK_COMMENT_REPLIES, SCAVIO_TIKTOK_SEARCH_VIDEOS, SCAVIO_TIKTOK_SEARCH_USERS, SCAVIO_TIKTOK_HASHTAG, SCAVIO_TIKTOK_HASHTAG_VIDEOS, SCAVIO_TIKTOK_USER_FOLLOWERS, SCAVIO_TIKTOK_USER_FOLLOWINGS |
| TikTok Shop | enable_tiktok_shop |
8 | SCAVIO_TIKTOK_SHOP_SEARCH, SCAVIO_TIKTOK_SHOP_SEARCH_SUGGESTIONS, SCAVIO_TIKTOK_SHOP_PRODUCT, SCAVIO_TIKTOK_SHOP_PRODUCT_REVIEWS, SCAVIO_TIKTOK_SHOP_CATEGORIES, SCAVIO_TIKTOK_SHOP_CATEGORY_PRODUCTS, SCAVIO_TIKTOK_SHOP_SHOP_PRODUCTS, SCAVIO_TIKTOK_SHOP_RESOLVE |
enable_instagram |
12 | SCAVIO_INSTAGRAM_PROFILE, SCAVIO_INSTAGRAM_USER_POSTS, SCAVIO_INSTAGRAM_USER_REELS, SCAVIO_INSTAGRAM_USER_TAGGED, SCAVIO_INSTAGRAM_USER_STORIES, SCAVIO_INSTAGRAM_POST, SCAVIO_INSTAGRAM_POST_COMMENTS, SCAVIO_INSTAGRAM_COMMENT_REPLIES, SCAVIO_INSTAGRAM_SEARCH_USERS, SCAVIO_INSTAGRAM_SEARCH_HASHTAGS, SCAVIO_INSTAGRAM_USER_FOLLOWERS, SCAVIO_INSTAGRAM_USER_FOLLOWINGS |
|
| X | enable_x |
11 | SCAVIO_X_SEARCH, SCAVIO_X_TWEET, SCAVIO_X_TWEET_COMMENTS, SCAVIO_X_TWEET_RETWEETERS, SCAVIO_X_USER, SCAVIO_X_USER_TWEETS, SCAVIO_X_USER_REPLIES, SCAVIO_X_USER_MEDIA, SCAVIO_X_USER_FOLLOWERS, SCAVIO_X_USER_FOLLOWINGS, SCAVIO_X_TRENDING |
enable_linkedin |
9 | SCAVIO_LINKEDIN_PERSON, SCAVIO_LINKEDIN_PERSON_ABOUT, SCAVIO_LINKEDIN_PERSON_POSTS, SCAVIO_LINKEDIN_COMPANY, SCAVIO_LINKEDIN_COMPANY_POSTS, SCAVIO_LINKEDIN_SEARCH_JOBS, SCAVIO_LINKEDIN_JOB, SCAVIO_LINKEDIN_POST, SCAVIO_LINKEDIN_POST_COMMENTS |
That is every live Scavio endpoint. Two things are deliberately absent: the deprecated
/youtube/metadata alias (identical to SCAVIO_YOUTUBE_VIDEO) and the 5 retired
LinkedIn endpoints (always 410, unbilled).
Credits
Every tool states its cost in its own description. The full table:
| Cost | Endpoints |
|---|---|
| 1 credit | All 14 Google v2 tools, all 12 Reddit, all 11 TikTok, all 8 TikTok Shop, all 11 X, Amazon (3), Walmart (2), and the 11 remaining YouTube tools |
| 2 credits | SCAVIO_YOUTUBE_SEARCH, SCAVIO_YOUTUBE_SHORTS, SCAVIO_INSTAGRAM_USER_POSTS |
| 3 credits | SCAVIO_YOUTUBE_STREAMS |
| 8 credits | SCAVIO_YOUTUBE_TRANSCRIPT, SCAVIO_INSTAGRAM_POST, SCAVIO_INSTAGRAM_COMMENT_REPLIES |
| 10 credits | The other 9 Instagram tools; LinkedIn PERSON_POSTS, COMPANY_POSTS, SEARCH_JOBS, POST_COMMENTS |
| 30 credits | SCAVIO_LINKEDIN_JOB (the most expensive Scavio endpoint) |
LinkedIn PERSON, PERSON_ABOUT, COMPANY and POST cost 1 credit. See
scavio.dev/docs.
Links
- Scavio: https://scavio.dev
- Docs: https://scavio.dev/docs
- Dashboard: https://dashboard.scavio.dev
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file composio_scavio-0.3.0.tar.gz.
File metadata
- Download URL: composio_scavio-0.3.0.tar.gz
- Upload date:
- Size: 46.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8679e01c0881cdc5b2ebb107e1f9df0bb71ab9be9ace873719758fb92ee4ef7f
|
|
| MD5 |
c46555519705c20dfb367f571553ba56
|
|
| BLAKE2b-256 |
1910650f9d9e79aea405758a0595a7f25e583ac809f7f8827b2002a6e344165a
|
File details
Details for the file composio_scavio-0.3.0-py3-none-any.whl.
File metadata
- Download URL: composio_scavio-0.3.0-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
961df673632d06db457d5ac50a9b33f99012b9d38c95257e411cade085ef2b2b
|
|
| MD5 |
d3ea925aa88d388eee0c65114554bf7e
|
|
| BLAKE2b-256 |
94bee3ef941c3abdf7804568399e48ea21b2dc582bc0189adf70d3ffef98d4ae
|