import {LandingLayout} from '@/components/landing/landing-layout'; import {useNavigate} from 'react-router-dom'; import {Globe, Key, Terminal} from 'lucide-react'; const ENDPOINTS = [ {method: 'GET', path: '/v1/agents', desc: 'List all agents in your workspace'}, {method: 'POST', path: '/v1/rooms', desc: 'Create a new collaborative room'}, {method: 'POST', path: '/v1/skills/publish', desc: 'Publish a skill to the registry'}, {method: 'GET', path: '/v1/network/stats', desc: 'Fetch global network statistics'}, ]; export default function NetworkApiPage() { const navigate = useNavigate(); return (
/ Developer API

Developer API

Integrate GitDataAI capabilities into your own tools and workflows. Full REST API with token-based authentication.

{/* Auth */}
Authentication
curl -H "Authorization: Bearer gdai_live_xxxx" https://api.gitdata.ai/v1/agents
{/* Endpoints */}

Core Endpoints

{ENDPOINTS.map(ep => (
{ep.method} {ep.path} {ep.desc}
))}
); }