> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mem.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

The best way to send content to Mem is through the **Mem It** endpoint. Mem intelligently processes, organizes, and structures your input automatically - whether it's a quick note, web article, meeting transcript, or any other type of content.

Here's your first API call:

```bash theme={null}
curl "https://api.mem.ai/v2/mem-it" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $MEM_API_KEY" \
    -d '{
        "input": "Check out the new research paper on quantum computing by MIT.",
        "instructions": "Save this for my research"
    }'
```

You'll get back a request ID, and Mem processes your content in the background. That's it - your content is now intelligently organized and searchable in Mem!

<div style={{ height: "30px" }} />

<CardGroup cols={2}>
  <Card title="Mem It - Use Cases" icon="brain" href="../use-cases/mem-it">
    Discover how to intelligently process any content
  </Card>
</CardGroup>
