pilt

Access Pilt fundraising data -- investor matches, campaign stats, outreach events, and deck analysis.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pilt" with this command: npx skills add babpilt/pilt

Pilt API Skill

You can retrieve fundraising data from Pilt using curl. All requests go to a single endpoint and require your personal API key.

Endpoint

POST https://pilt.ai/api/v1/gateway

Required Headers

Every request must include these two headers:

  • Content-Type: application/json
  • x-pilt-api-key: $PILT_API_KEY

Security

All authorization is performed exclusively via your personal x-pilt-api-key. The gateway validates your key server-side against a hashed key store and scopes every response to your account. No other credentials are required.

Request Body

JSON object with a mandatory action field. Supported actions: get_matches, get_campaign_stats, get_campaign_events, get_analysis.

Actions

get_matches

Returns matched investors with fit scores from the user's latest deck analysis.

curl -s -X POST \
  https://pilt.ai/api/v1/gateway \
  -H "Content-Type: application/json" \
  -H "x-pilt-api-key: $PILT_API_KEY" \
  -d '{"action": "get_matches"}'

get_campaign_stats

Returns aggregated email outreach statistics: queued, sent, opened, and replied counts.

curl -s -X POST \
  https://pilt.ai/api/v1/gateway \
  -H "Content-Type: application/json" \
  -H "x-pilt-api-key: $PILT_API_KEY" \
  -d '{"action": "get_campaign_stats"}'

get_campaign_events

Returns a per-investor event log with timestamps (e.g. sent, opened, replied).

curl -s -X POST \
  https://pilt.ai/api/v1/gateway \
  -H "Content-Type: application/json" \
  -H "x-pilt-api-key: $PILT_API_KEY" \
  -d '{"action": "get_campaign_events"}'

get_analysis

Returns the deck analysis summary: score, industry, stage, and one-liner.

curl -s -X POST \
  https://pilt.ai/api/v1/gateway \
  -H "Content-Type: application/json" \
  -H "x-pilt-api-key: $PILT_API_KEY" \
  -d '{"action": "get_analysis"}'

Error Handling

StatusMeaning
401Missing or invalid x-pilt-api-key header (must start with pilt_sk_)
403API key not found or revoked
400Missing or unsupported action field
413Request body exceeds 10KB limit
503API gateway is not yet configured on the server side

User Setup

Store your Pilt API key so it is available as the PILT_API_KEY environment variable. In OpenClaw, add it to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "pilt": {
        "enabled": true,
        "apiKey": "pilt_sk_..."
      }
    }
  }
}

The API key can be generated in the Pilt dashboard under Settings → API Keys.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Startup Fundraising Engine

Complete startup fundraising system — from pre-seed to Series B. Investor targeting, pitch deck construction, term sheet negotiation, due diligence preparati...

Registry SourceRecently Updated
0405
Profile unavailable
Coding

Pitch

Pitch development and presentation coaching for founders and salespeople. Use when user mentions investor pitches, sales presentations, elevator pitches, pit...

Registry SourceRecently Updated
0179
Profile unavailable
General

Funding

Complete fundraising and investment intelligence system for startups, nonprofits, and individuals raising capital. Trigger whenever someone needs to raise mo...

Registry SourceRecently Updated
0108
Profile unavailable