Skip to main content
The deck loop is the headline workflow of the Founder API: submit a pitch deck for private scoring, read back your CRI and the rubric’s recommendations, regenerate the deck, and resubmit - over and over - until you clear Caplia Verified (CRI ≥ 700). Then publish the winning draft as one clean public update. The key idea is private drafts. Every draft is scored privately and visible only to you. Investors never see the half-finished versions or the score bouncing around as you iterate. Only when you publish does a single, clean CRI update land on your public profile.
The examples below use the sandbox host (api-sandbox.venture.caplia.ai) and a cap_fnd_test_* key so you can rehearse safely; for your real company use the production host api.venture.caplia.ai with a cap_fnd_live_* key. The deck loop needs a write-scoped key - submitting and publishing a deck changes what investors see.

The four endpoints

Walk through one iteration

1

Submit a draft for private scoring

Upload the PDF as multipart form data. You get a draft_id back right away - scoring runs asynchronously.
Response
2

Poll until it's scored

Poll the draft every ~3 seconds. status moves scoringscored (or failed). Scoring typically takes under a minute.
Response (scored)
cri_score is the private CRI on the 0-1000 scale; verified flips to true once it clears 700.
3

Regenerate the deck and resubmit

Use the recommendations to rewrite the deck - add the SOM math, sharpen the team slide, whatever the rubric flagged. Then submit the new PDF as another draft and poll again. Repeat until cri_score >= 700.GET /v1/me/deck/drafts lists every draft newest-first so you can see the score climb across iterations and pick the best one.
4

Publish the winner

Once a draft clears 700 (or you’re otherwise happy with it), publish it. This promotes that PDF to your live pitch deck and enqueues one normal public re-score - so investors see a single clean CRI update, not the draft-by-draft thrash.
Response

A complete loop in code

This polls a draft to completion and prints the CRI and recommendations - the building block of an automated loop:
loop.py

Let an agent run the whole loop

The loop is far more powerful when an AI agent closes it end to end: read the recommendations, rewrite the deck, resubmit, repeat. Connect Claude (or any MCP client) to the Caplia MCP server, give it access to your deck tool - Canva, Google Slides, a local PDF generator - and ask it to drive:
“Submit my pitch deck to Caplia for private scoring. Read the recommendations, rebuild the weak slides in Canva to address them, and resubmit. Keep iterating until my CRI is at least 700, then show me the best draft before we publish.”
The agent uses caplia_submit_deck_draft and caplia_get_deck_draft to score, your design tool to regenerate, and caplia_publish_deck_draft once it clears the bar. See MCP server for setup and the full founder toolset.

What the deck can and can’t move

A pitch deck drives most of the CRI, but not all of it. Two domains need more than a deck:
  • Financial (model). A chunk of the Financial domain comes from an actual financial model in your data room, not slides. Upload one with POST /v1/me/documents (or caplia_upload_document) to unlock those points - it’s often the single highest-leverage move, as in the quickstart example.
  • Platform Actions. Some points reward activity inside Caplia itself (engaging with investors, keeping your profile complete). These aren’t deck-achievable - the API surfaces them in your domain breakdown so you know they exist.
So expect deck iteration alone to take you most of the way; pair it with a financial-model upload and normal platform activity to clear 700 comfortably.

Notes

  • Drafts are private. Nothing about a draft is visible to investors until you publish. Score as many as you like.
  • Publish is one update. Publishing triggers a single public re-score, so your public CRI moves once, cleanly.
  • A draft must be scored before you can publish it. Publishing a still-scoring draft returns 409 conflict.
  • 50 MB max per PDF.