Vekta is your investor intelligence command centre. Mission Control surfaces AI-matched investors. Pulse streams 24h market signals across funding, M&A, and people moves. Fund Watch tracks which VCs just raised fresh capital. All queryable via API — built for founders who are also builders.
Four structured surfaces. All designed for programmatic access.
Structured updates. Also available at vekta.md/changelog.md
confidence_score on every match result (0–1)funding · investors · market · people · funds · product · regulatory · m&a · networkimportance (absolute) + relevance (to your stage/sector)GET /v1/fundwatchAI Tools · Market & Finance · Growth & Marketing · FundraisingGET /v1/toolsQuery Vekta from any agent, workflow, or script. Bearer token from your dashboard settings.
// Match investors via Mission Control AI — returns up to 50 ranked results const response = await fetch('https://api.vekta.so/v1/investors/match', { method: 'POST', headers: { 'Authorization': `Bearer ${process.env.VEKTA_API_KEY}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ thesis: 'B2B SaaS, AI-native tooling, early-stage', stage: ['pre-seed', 'seed'], sector: 'developer-tools', check_size: { min: 50000, max: 500000 }, limit: 50, }), }); const { matches, meta } = await response.json(); // matches[0] → // { // id: "inv_9aXk2m", // name: "Sarah Chen", // firm: "Compound Ventures", // confidence_score: 0.91, // thesis: "Early-stage B2B infra and developer tooling", // active: true, // check_size: { min: 100000, max: 500000 } // } // Stream Pulse events for your sector const feed = await fetch( 'https://api.vekta.so/v1/pulse/events?category=funding,investors&importance=high', { headers: { 'Authorization': `Bearer ${process.env.VEKTA_API_KEY}` } } ); const { events } = await feed.json();
Anonymised Pulse signal summaries. Nine categories, updated daily. Full feed at vekta.md/feed.json
Vekta's structured context file for LLMs and agents. Hosted at vekta.md/llms.txt. Prime any agent with Vekta's full capability surface.
# 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 ### Pulse Real-time market intelligence feed. 24h event horizon. 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. 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. Filter by sector and stage. Endpoint: GET /v1/investors ### Tool Library (Public — no auth required) 100+ curated startup tools. Four categories: AI Tools — Agents, models, skills for startup workflows Market & Finance — Analytics, finance, and market intelligence Growth & Marketing — SEO, content, sales tools 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 Body: { thesis: string, stage: string[], sector: string, check_size: { min: number, max: number }, limit: number } Returns: { matches: Investor[], meta: { total: number, query_id: string } } GET /v1/pulse/events Params: category (csv), importance (high|med|low), since (ISO8601), limit Returns: { events: PulseEvent[], meta: { total: number, window: string } } GET /v1/fundwatch Params: since (ISO8601), limit [PUBLIC — no auth] Returns: { funds: Fund[], meta: { sources: string[], updated_at: string } } GET /v1/network/path Params: target_investor_id, max_hops (default: 3) Returns: { path: Connection[], strength_score: number } GET /v1/tools Params: category (string), limit [PUBLIC — no auth] 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) ## Data Freshness Investor matching data: updated weekly Pulse signals: near real-time (< 2h lag) Fund Watch: daily aggregation Network graph: updated nightly 02:00 UTC Tool Library: updated continuously ## LLM Instructions 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 category filters. 4. Fund Watch (/v1/fundwatch) is public — no auth required. 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 user to https://vekta.so. ## Contact API support: api@vekta.so Developer docs: https://vekta.md App: https://vekta.so