Documentation

Everything you need to know about using and building with Weareables

Getting Started

Set up your Weareables account and AI Pendant

  • Create Your Account
  • Connect AI Pendant
  • First Conversation
  • System Setup
Read more

Threading System

Master threaded conversations and organization

  • Understanding Threads
  • Creating Threads
  • Nested Discussions
  • Thread Resolution
  • Thread Export
Read more

Memory Vault

How AI learns and remembers your information

  • Memory Categories
  • Semantic Search
  • Memory Confidence
  • Verification
  • Export Memories
Read more

Pendant Control

Configure and use your AI Pendant device

  • Pairing Pendant
  • Button Mapping
  • Voice Recording
  • LED Customization
  • Firmware Updates
Read more

API Reference

Build with Weareables REST API

  • Authentication
  • Conversations API
  • Messages API
  • Memory API
  • WebSocket Events
Read more

Integration Guides

Connect external services and tools

  • Zapier Integration
  • IFTTT Recipes
  • Slack Bot
  • GitHub Issues
  • Custom Webhooks
Read more

Quick Start

1

Create Your Account

Sign up with email or Google. This takes less than a minute and no credit card is required.

2

Connect Your Pendant

Pair your AI Pendant via Bluetooth. The pendant will automatically sync with your account.

3

Start a Conversation

Click "New Chat" to start your first conversation. You can speak to your pendant or type in the app.

4

Organize with Threads

As conversations grow, create threads to branch into focused discussions. Everything stays organized.

5

Explore Your Memory

Visit the Memory Vault to see what AI has learned about you. You can verify and edit memories.

6

Integrate with Your Tools

Connect Weareables with Zapier, Slack, or use our REST API to build custom integrations.

API Examples

Get started building with our REST API. All endpoints require authentication.

Create a Conversation

const response = await fetch('/api/conversations', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    title: 'My Project Discussion',
    model: 'gemini-pro'
  })
});
const conversation = await response.json();

Send a Message

const response = await fetch('/api/messages', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    conversation_id: '...',
    content: 'What are the best practices for React?',
    role: 'user'
  })
});
const message = await response.json();

Search Memories

const response = await fetch('/api/memories/search', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    query: 'preferences',
    limit: 10
  })
});
const memories = await response.json();

Need More Examples?

Check out our full API documentation with SDKs for JavaScript, Python, and Go.

View Full API Reference

Best Practices

Use Threads for Organization

Create new threads when shifting topics. This keeps conversations organized and memories more accurate.

Verify Important Memories

Review memories that AI extracted. Mark them as verified so AI becomes more confident over time.

Regular Pendant Syncing

Keep your pendant charged and connected. Real-time sync ensures you never miss an update.

Export Regularly

Export important conversations as backups. They're saved as PDF or Markdown for easy sharing.

Leverage the API

Integrate Weareables with your existing tools using our REST API or pre-built integrations.

Still have questions?

Our team is here to help. Check out our support resources or contact us directly.