# ParaFi Tech ParaFi Tech operates blockchain infrastructure and validator services across Solana, Ethereum, Avalanche, and Aptos. Primary public surface for agents: - Website: https://parafi.tech - API base: https://parafi.tech/api - OpenAPI: https://parafi.tech/openapi.json - API docs: https://parafi.tech/api-docs - Agent guide: https://parafi.tech/skill.md - LLM index: https://parafi.tech/llms.txt Public API characteristics: - No authentication required - Read-only JSON endpoints - Good fit for dashboards, monitoring, search, summaries, and comparison workflows - Some endpoints are ParaFi-validator-specific, others are network-wide Supported networks and data: - Solana: validator APY, rewards, delegators, stake totals, validator health, network stats, compute utilization, MEV rewards - Ethereum: network stats and real-time sidecar metrics - Avalanche: ParaFi validator data - Market: BTC, ETH, SOL, and APT prices Best starting points by task: 1. Evaluate ParaFi as a Solana validator - GET /api/solana/validator-apy - GET /api/solana/network-apy - GET /api/solana/validator-active-stake - GET /api/solana/validator-stake - Optional page context: https://parafi.tech/solana/staking 2. Track rewards for a wallet or epoch - GET /api/solana/rewards/staker/{address} - GET /api/solana/rewards/epoch/current - GET /api/solana/rewards/validator/{voteAccount} - GET /api/solana/mev-rewards?startEpoch={startEpoch}&endEpoch={endEpoch} 3. Monitor Solana network health - GET /api/solana/sidecar-stats - GET /api/solana/compute-units - GET /api/solana/network-stats/history - GET /api/solana/network-validators - GET /api/solana/leader-slots 4. Query non-Solana coverage - GET /api/ethereum/network-stats - GET /api/ethereum/sidecar-stats - GET /api/avalanche/validators - GET /api/market/prices 5. Get implementation context for Solana integrations - https://parafi.tech/solana/integration-guide - https://parafi.tech/skill.md Important ParaFi validator constants: - Validator identity: parafiUS6h6oLhCFwhjvEmQJKw8pF1iXsxMJdTq46dS - Vote account: pt1LsjkNwqCKdYYfc35ToDkqtEG9pswLTJNaMo8inft - Commission: 0% - Primary RPC: https://solana-rpc.parafi.tech - Fallback RPC: https://api.mainnet-beta.solana.com Response conventions: - Many endpoints include freshness metadata such as cacheSource, fromCache, isStale, and lastUpdated - Rewards endpoints often use strings for large integer values - Epoch routes support "current" for the latest epoch - Lamports are the smallest SOL unit: 1 SOL = 1,000,000,000 lamports How to choose the right resource: - Need a complete machine-readable contract: use openapi.json - Need concise discovery hints: use llms.txt - Need workflow guidance and examples: use skill.md - Need browsable human docs: use /api-docs Suggested agent behavior: - Start with openapi.json to identify valid routes and parameters - Use skill.md for domain context and interpretation guidance - Use llms.txt or llms-full.txt to route to the right endpoint quickly - For staking or wallet actions, treat the website pages and Solana examples as guidance; the public REST API is informational, not a transaction submission API Common interpretation notes: - Validator APY includes inflation rewards and MEV rewards when available - Network APY is a benchmark for comparison against ParaFi validator APY - Validator active stake and validator stake endpoints are better for current state than historical rewards routes - sidecar-stats is the best real-time network-health starting point - market/prices is the simplest cross-asset pricing endpoint High-value URLs: - https://parafi.tech/solana/staking - https://parafi.tech/solana/how-to-stake - https://parafi.tech/solana/integration-guide - https://parafi.tech/solana/network-stats - https://parafi.tech/solana/epoch-status - https://parafi.tech/api-docs