--- title: "Getting Started" description: "Start using Supermemory API in under 5 minutes" --- To use the Supermemory API, you'll need: 1. An API key (get one by signing up at https://dev.supermemory.ai ) 2. Basic understanding of REST APIs 3. A tool to make HTTP requests (like curl, Postman, or your favorite programming language) 1. Login into https://dev.supermemory.ai and create an organization 2. Create an api key, copy and save it securely. ![image.png](/image.png) Keep your API key secure and never share it publicly. You'll need this key for authenticating all API requests. ## Base URL All API requests should be made to: ``` https://v2.api.supermemory.ai ``` ## Add your first memory ```bash curl -X POST https://v2.api.supermemory.ai/add \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"content": "This is the content of my first memory."}' ``` This will add a new memory to your Supermemory account. Try it out in the [API Playground](/api-reference/endpoints/add-new-content) ## Search your memories ```bash curl -X GET https://v2.api.supermemory.ai/search \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"q": "This is the content of my first memory."}' ``` Try it out in the [API Playground](/api-reference/endpoints/search-content) That's it\\! You've now added your first memory and searched for it.