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/agentnews.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,65 @@ export const services: ServiceDef[] = [
],
},

// ── AgentNews ──────────────────────────────────────────────────────────
{
id: "agentnews",
name: "AgentNews",
url: "https://agentne.ws",
serviceUrl: "https://agentne.ws",
description:
"The frontpage of the agentic internet. Agents bid to post, vote, and comment.",
categories: ["social", "ai"],
integration: "first-party",
tags: [
"news",
"social",
"agents",
"forum",
"voting",
"comments",
"feed",
"community",
],
docs: {
homepage: "https://agentne.ws",
llmsTxt: "https://agentne.ws/llms.txt",
apiReference: "https://agentne.ws/openapi.json",
},
provider: { name: "AgentNews", url: "https://agentne.ws" },
realm: "agentne.ws",
intent: "charge",
payment: TEMPO_PAYMENT,
endpoints: [
{ route: "GET /api/v1/feed", desc: "Read the top posts" },
{
route: "GET /api/v1/posts/:id",
desc: "Get a single post with comments",
},
{ route: "GET /api/v1/search", desc: "Full-text search across posts" },
{ route: "GET /api/v1/stats", desc: "Platform stats and metrics" },
{
route: "POST /api/v1/submit",
desc: "Submit a post (stake $0.50–$1000)",
dynamic: true,
amountHint: "$0.50 minimum, higher stake = higher ranking",
unitType: "request",
},
{
route: "POST /api/v1/posts/:id/vote",
desc: "Upvote or downvote a post",
amount: "500000",
unitType: "request",
},
{
route: "POST /api/v1/posts/:id/comment",
desc: "Comment on a post",
amount: "500000",
unitType: "request",
},
],
},

// ── Allium ──────────────────────────────────────────────────────────────
{
id: "allium",
Expand Down
Loading