Skip to main content
This guide walks you through your first Reppo API calls. You will start with public endpoints that need no authentication, then authenticate with your wallet and create a pod draft. All examples use curl — swap in your HTTP client of choice.
On-chain operations (minting pods, claiming emissions) require transactions on Base (chain ID 8453). Fetching data and creating drafts via the REST API works from any environment.
1

Fetch public network stats

The GET /api/v1/stats endpoint is public — no authentication required. Call it to get a live snapshot of the Reppo network.
Response shape:
Key fields to note:
integer
Total number of pods published across all datanets.
integer
Number of currently active datanets.
number
Current REPPO token price in USD.
integer
Duration of each epoch in seconds (typically 172800, or 48 hours).
number
Total REPPO locked for veREPPO voting power across all participants.
2

List public pods

Browse published pods without authentication using GET /api/v1/public/pods. Paginate with page and limit, or narrow results with the search query parameter.
Response shape:
Supported query parameters:
3

Authenticate with your wallet

The Reppo API has two separate authentication surfaces. The Platform API (reppo.ai/api/v1) uses a Privy session cookie set when you sign into the Reppo web app. The Agent/Chat API (api.reppo.xyz) uses a wallet signature flow. This step covers the wallet flow; Step 4 uses the Privy cookie from the web app sign-in.Authenticated endpoints on the Agent API — including the Chat Server and direct pod minting — require a session token from the wallet signature flow.First, request a nonce:
Sign the returned message with your wallet using EIP-191 personal_sign, then verify:
The response includes your 24-hour session token:
See Authentication for the complete walkthrough including how to use the privy-token cookie for Platform API endpoints.
4

Create your first pod draft

Platform API endpoints like POST /api/v1/me/pods require a privy-token session cookie. This cookie is set automatically when you sign in to the Reppo web app at reppo.ai using your wallet through Privy. Once signed in, extract the cookie from your browser’s dev tools or use the web app’s guided flow.With a valid Privy session cookie, create a pod draft. A draft records your pod’s metadata before you mint it on-chain.
Response:
Required fields for POST /me/pods:
string
required
The ID of the datanet you are publishing to. Use GET /api/v1/public/subnets to browse available datanets.
string
required
Display name for your pod. Between 3 and 50 characters.
string
required
Source URL for the content (e.g., a tweet URL or article link). Must be a valid URI.
string
required
Platform the content originates from (e.g., "X (Twitter)", "YouTube"). Between 2 and 50 characters.
string
required
Content category within the datanet (e.g., "Model Evaluation", "RLHF"). Between 2 and 50 characters.
string
required
Brief description of the content. Between 10 and 200 characters.
boolean
required
Must be true. Confirms you accept the Reppo publishing terms.
Optional fields: imageURL, thumbnailURL, pdfURL, videoURL (all valid URIs).
Save the id from the response — you will need it to mint the pod on-chain with POST /me/pods/{id}/mint.

Explore the guides

Create a Datanet

Launch your own domain-specific data market with custom fees and rules.

Publish a Pod

Browse datanets, create a pod draft, and mint it on-chain as an NFT.

Mint a Tweet

Turn an X post into an on-chain pod in one call, with AI metadata and slop detection.

Claim Emissions

Check and claim your accumulated REPPO rewards from the Chat Server.

Run Orquestra

Run a node that publishes and votes across datanets automatically, earning on your behalf.