PeekPanda docs
Quickstart
Make your first authenticated discovery request in a few minutes.
Download Markdown ↓Before you connect
Preview contract: these routes and tools are implemented in the shared contract, but the public host, customer API access and OAuth flow have not been deployment verified.
Connect with Codex
Add the remote server, authenticate, then launch Codex and ask: “Use PeekPanda to search for iOS calorie-tracking competitors.” The first successful request should call search_competitors.
codex mcp add peekpanda --url https://mcp.peekpanda.com/mcp
codex mcp login peekpanda
codexConnect with Claude Code
Add the remote HTTP server, launch Claude Code, run /mcp to authenticate, then ask it to search for iOS calorie-tracking competitors. The first successful request should call search_competitors.
claude mcp add --transport http peekpanda https://mcp.peekpanda.com/mcp
claude
/mcpContinue with MCP
Read the complete setup notes, tool overview and result limits.
Read the full MCP guide →Use the REST API
PeekPanda exposes the same competitor catalogue to REST clients. You need a configured credential with context:read and a tenancy selector.
curl --get 'https://api.peekpanda.com/v1/competitors' \
--header "Authorization: Bearer $PEEKPANDA_TOKEN" \
--header 'x-genviral-tenancy: personal' \
--data-urlencode 'platform=ios' \
--data-urlencode 'search=calorie' \
--data-urlencode 'limit=24'Read the response
Responses are paginated with an opaque next cursor. Keep the original filters when following it. Every stored fact carries a source date or an explicit unknown state; ratings-derived installs are never presented as measured downloads.
Next steps
Explore competitor profiles, then search organic content or paid ads. Save useful organic posts and paid ads to your account. In Paid ads, use Save or Remove and the Saved filter to revisit your selections. The ASO workstation and explicit refresh commands are available in the API and MCP references.