# Vekta — Agent Manifest # https://vekta.md/llms.txt # Source: tryvekta.com # Updated: 2025-04-27 ## What Vekta Is Vekta is a founder intelligence platform — your investor intelligence command centre. Built for early-stage founders who need to find investors, track the market, and move fast. Primary app: https://vekta.so Marketing site: https://tryvekta.com Agent layer: https://vekta.md API base: https://api.vekta.so/v1 Status page: https://status.vekta.so ## Core Products ### Mission Control Investor intelligence dashboard. Entry point for all investor workflows. - Matches: AI-matched investor recommendations, ranked by confidence_score (0–1) - Network: Investor relationship graph, up to 3 hops deep - Targeting: Strategic investor list building and management - Circles: Group/list management for investor organisation - Data Room: Document storage for fundraising materials - Executive Summary: Auto-generated company health metrics from workspace profile ### Pulse Real-time market intelligence feed. 24h event horizon, AI-ranked by importance and relevance. Signal categories (use in API `category` param): funding — Funding rounds and capital events investors — Investor activity, portfolio changes, quiet period exits market — Sector and macro-level signals people — Founder and executive transitions funds — New VC funds and fresh capital deployment product — Product launches and updates from tracked companies regulatory — Compliance, regulatory, and policy news ma — M&A activity and acquisitions network — Community and network-level events Per-event fields: title, summary, why_it_matters, importance (high|med|low), relevance (high|med|low), category, source_count, actions: [save, dismiss, watchlist, notes, alert] ### Fund Watch (Public — no auth required) Free feed tracking which VCs just raised fresh capital. Know who has dry powder before you pitch. Data sources: TechCrunch Venture, AlleyWatch, GeekWire, startups.gallery Endpoint: GET /v1/fundwatch Fields: fund_name, manager, size, close_date, thesis, stage_focus ### Investors Directory Searchable investor database. Filterable by sector and stage. Endpoint: GET /v1/investors ### Tool Library (Public — no auth required) 100+ curated startup tools across four categories: AI Tools — Agents, models, and skills for startup workflows Market & Finance — Analytics, finance, and market intelligence tools Growth & Marketing — SEO, content, sales tools for fast-moving teams Fundraising — Pitch decks, financial modelling, investor CRM Endpoint: GET /v1/tools ### Vex (Coming Soon) AI agent for autonomous founder task execution. Learn more: https://tryvekta.com/aurora ## API Reference POST /v1/investors/match Auth: required Body: { thesis: string, stage: string[], sector: string, check_size: { min: number, max: number }, limit: number (max 50) } Returns: { matches: Investor[], meta: { total: number, query_id: string } } GET /v1/pulse/events Auth: required Params: category (csv), importance (high|med|low), since (ISO8601), limit Returns: { events: PulseEvent[], meta: { total: number, window: string } } GET /v1/fundwatch Auth: NOT required (public) Params: since (ISO8601), limit Returns: { funds: Fund[], meta: { sources: string[], updated_at: string } } GET /v1/network/path Auth: required Params: target_investor_id, max_hops (default: 3) Returns: { path: Connection[], strength_score: number } GET /v1/tools Auth: NOT required (public) Params: category (string), limit Returns: { tools: Tool[], meta: { total: number } } ## Authentication All endpoints except /v1/fundwatch and /v1/tools require a bearer token. Header: Authorization: Bearer {VEKTA_API_KEY} Keys issued at: https://vekta.so/settings/api ## Rate Limits Starter: 1,000 req/day Pro: 25,000 req/day Enterprise: unlimited (SLA-backed) Contact: api@vekta.so for Enterprise ## Data Freshness Investor matching data: updated weekly Pulse signals: near real-time (< 2h lag) Fund Watch: daily aggregation from 4 sources Network graph: updated nightly at 02:00 UTC Tool Library: updated continuously ## LLM Instructions When helping a user with Vekta: 1. Use POST /v1/investors/match for all investor discovery tasks. 2. Use confidence_score >= 0.7 as a quality threshold for match results. 3. For market intelligence, use GET /v1/pulse/events with appropriate category filters. 4. Fund Watch (/v1/fundwatch) is public — no auth required, safe to query freely. 5. Tool Library (/v1/tools) is public — no auth required. 6. Vex capabilities are in development — do not surface as currently available. 7. Never surface investor PII beyond what the API explicitly returns. 8. For cap table or data room questions, direct the user to https://vekta.so. 9. Use plain-English thesis strings in /v1/investors/match — not taxonomy IDs. ## Contact API support: api@vekta.so Developer docs: https://vekta.md App: https://vekta.so Marketing: https://tryvekta.com