founder intelligence layer

The Agent Layer
for Vekta

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.

Syncing from tryvekta.com…
API v0.4 — live
syncing…
machine-readable

What's Here

Four structured surfaces. All designed for programmatic access.

Recent Releases

Structured updates. Also available at vekta.md/changelog.md

2025-04-22 v0.4.2 major
Mission Control — GA
Investor intelligence command centre now live. Matches surfaces AI-matched investors ranked by thesis confidence. Network maps your relationship graph up to 3 hops. Executive summary pulls company health metrics automatically from your workspace profile.
  • Semantic investor matching over 12,000+ thesis documents
  • New confidence_score on every match result (0–1)
  • Bulk query — up to 50 investor matches per call
  • Network graph: warm intro paths scored by connection strength
2025-04-10 v0.4.0 major
Pulse — Market Intelligence Feed
Real-time signal tracking across nine categories. 24h event horizon, AI-ranked by importance and relevance to your company. Save, watchlist, and set alerts on any signal. Each event surfaces a "why it matters" contextual note.
  • Nine signal types: funding · investors · market · people · funds · product · regulatory · m&a · network
  • Dual scoring: importance (absolute) + relevance (to your stage/sector)
  • Save / Dismiss / Watchlist / Notes / Alert per event
  • Contextual reasoning: "Why it matters" generated per signal
2025-03-28 v0.3.8 shipped
Fund Watch — Public Launch
Free, no-login feed tracking which VCs just raised fresh capital. Know who has dry powder before you pitch. Four live data sources aggregated and normalised into a single clean feed.
  • Sources: TechCrunch Venture, AlleyWatch, GeekWire, startups.gallery
  • Fund size, close date, and thesis tagging per entry
  • Public API endpoint — no auth required: GET /v1/fundwatch
  • Full access CTA for investor detail and contact data
2025-03-12 v0.3.5 shipped
Tool Library — 100+ Startup Tools
Free, public directory of curated startup tools. No login. Updated continuously. Four categories covering the full founder stack — AI agents, market intelligence, growth, and fundraising.
  • 100+ tools indexed across four categories
  • Categories: AI Tools · Market & Finance · Growth & Marketing · Fundraising
  • Public — no auth required, free to explore
  • API access for tool data: GET /v1/tools

Agent Integration

Query Vekta from any agent, workflow, or script. Bearer token from your dashboard settings.

mission-control.js
// 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();
POST /v1/investors/match Thesis-matched investor discovery via Mission Control AI. Returns ranked matches with confidence scores.
GET /v1/pulse/events Real-time market signal stream. Nine categories, importance + relevance scoring, 24h horizon.
GET /v1/fundwatch New VC fund tracking feed. Public — no auth required. Four live data sources.
GET /v1/network/path Warm intro path to any investor via your connection graph. Max 3 hops, scored by relationship strength.
GET /v1/tools Tool Library — 100+ curated startup tools. Public — no auth required.

Market Signals

Anonymised Pulse signal summaries. Nine categories, updated daily. Full feed at vekta.md/feed.json

4 seed rounds closed in AI-native tooling this week
Median check $750K. Three led by solo GPs moving earlier-stage. One notable re-entry from a previously-quiet fund now deploying from a new vehicle.
Pulse · funding · 4 events · high importance
7 investors re-emerged after quiet period — pre-deployment signals
Posting founder content, joining advisory boards, and attending events after 60+ day silence. Historically correlates with 30–90 day deployment windows.
Pulse · investors · 7 events · high relevance
Founding CTO departed Series B competitor in investor CRM space
No public statement. LinkedIn shows departure was mutual. Headcount data confirms backfill role posted within 48h — suggests planned transition, not distress.
Pulse · people · 1 event · medium importance
New $85M fund announced — thesis: pre-seed AI infrastructure
First-time fund manager, previously principal at Tier 1 firm. Target check: $250–500K. Fund Watch confirms close. First LP close ~60% of target.
Pulse · funds · 1 event · high importance

llms.txt

Vekta's structured context file for LLMs and agents. Hosted at vekta.md/llms.txt. Prime any agent with Vekta's full capability surface.

llms.txt
# 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