Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/icons/surf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5581,4 +5581,54 @@ export const services: ServiceDef[] = [
},
],
},

// ── Surf ─────────────────────────────────────────────────────────────
{
id: "surf",
name: "Surf",
url: "https://surf.cascade.fyi",
serviceUrl: "https://surf.cascade.fyi",
description:
"Pay-per-use research and inference API for AI agents. Twitter, Reddit, web data, and LLM inference - no signup, no API keys.",
categories: ["ai", "data", "search", "social", "web"],
integration: "first-party",
tags: [
"twitter",
"reddit",
"web",
"crawl",
"search",
"inference",
"llm",
"mcp",
"agents",
],
docs: {
homepage: "https://surf.cascade.fyi",
apiReference: "https://surf.cascade.fyi",
},
provider: { name: "Cascade", url: "https://surf.cascade.fyi" },
realm: "surf.cascade.fyi",
intent: "charge",
payment: TEMPO_PAYMENT,
endpoints: [
{ route: "POST /api/v1/twitter/search", desc: "Search tweets with advanced operators", amount: "5000" },
{ route: "POST /api/v1/twitter/tweet", desc: "Fetch tweet with full thread context", amount: "5000" },
{ route: "POST /api/v1/twitter/user", desc: "Fetch user profile with recent tweets", amount: "5000" },
{ route: "POST /api/v1/reddit/search", desc: "Search Reddit posts", amount: "5000" },
{ route: "POST /api/v1/reddit/post", desc: "Fetch post with comments", amount: "5000" },
{ route: "POST /api/v1/reddit/subreddit", desc: "Subreddit info and top posts", amount: "5000" },
{ route: "POST /api/v1/reddit/user", desc: "User profile with recent activity", amount: "5000" },
{ route: "POST /api/v1/web/search", desc: "AI-powered web search", amount: "10000" },
{ route: "POST /api/v1/web/crawl", desc: "Crawl URL to markdown or HTML", amount: "2000" },
{
route: "POST /api/v1/inference/completions",
desc: "Chat completions with 15 models - price varies by model and tokens",
dynamic: true,
amountHint: "$0.001 - $25.00 per 1M tokens",
intent: "session",
},
{ route: "GET /api/v1/inference/models", desc: "List available models" },
],
},
];
Loading