LLM Bridge

AI Context Capture

Save AI Conversations to Email

Capture any AI conversation with a single HTTP request. Works with ChatGPT, Claude, Gemini, Cursor, and any tool that can make HTTP calls.

No authentication required
Instant email delivery
Your API Key
Loading...
API Endpoint
Send a POST request to capture any AI conversation

Endpoint

POST https://mytendrils.blackgrid.com.au/api/capture

Request Body

{
  "platform": "ChatGPT | Claude | Gemini | Cursor | etc",
  "title": "Brief description of conversation",
  "conversation": "The full conversation text",
  "metadata": { "optional": "additional data" }
}

Response

{
  "success": true,
  "timestamp": "2026-01-09T05:14:49.275Z",
  "messageId": "..."
}

Required fields: platform, conversation

Optional fields: title, metadata

Usage Examples
Integrate with any platform that can make HTTP requests

Claude Code (CLI)

At the end of a conversation, ask Claude to save it:

Save this conversation to my capture endpoint at https://mytendrils.blackgrid.com.au/api/capture

Manual cURL

curl -X POST https://mytendrils.blackgrid.com.au/api/capture \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "Claude Code",
    "title": "Debugging session",
    "conversation": "paste conversation here",
    "targetEmail": "<YOUR_EMAIL>",
    "apiKey": "<YOUR_API_KEY>"
  }'
Tips & Best Practices

What to Capture

  • Useful solutions - Conversations where you solved a tricky problem
  • Code snippets - Generated code for later reference
  • Research - AI explanations of complex topics
  • Decisions - Document AI-assisted decision making

Conversation Formatting

The conversation field accepts any text format:

  • Plain text
  • Markdown
  • JSON array of messages
  • Raw copy-paste from chat UI

Email Organization

Emails arrive with subject: [AI Log] {platform}: {title}

Gmail Filter Suggestion:

  • Filter: from:ai-capture@proxp.blackgrid.com.au
  • Action: Apply label "AI Logs", Skip inbox (optional)
Quick Reference
ContextMethod
Claude CodeAsk Claude or use curl
ChatGPTCustom GPT Action
BrowserConsole snippet or bookmarklet
MobileiOS Shortcut / Android HTTP app
ScriptsPython/Node.js POST request
Endpoint:POST /api/capture
Required fields:platform, conversation
Optional fields:title, metadata
Auth fields:targetEmail, apiKey