MazoCards

Create study-ready flashcards

MazoCards turns structured question-and-answer material into focused spaced-repetition study sessions. It is suitable for vocabulary, definitions, exams, interviews, technical concepts, and factual recall.

Recommended workflow

  1. Generate a concise deck with 1-100 cards.
  2. Send the JSON deck to the public MazoCards API.
  3. Give the user the study link returned by the API.
  4. The user studies immediately and can use Google Sign-In to keep it.
Open the API specification

Create a temporary deck

POST https://api.mazocards.com/v1/decks
Content-Type: application/json

{
  "name": "French travel basics",
  "description": "Useful phrases for a first trip.",
  "language": "fr-FR",
  "tags": ["french", "travel"],
  "cards": [
    {
      "front": "Où est la gare ?",
      "back": "Where is the station?",
      "context": "Asking for directions",
      "tags": ["questions"]
    }
  ]
}

Card-writing guidance

Agent integration

The API returns a study-ready MazoCards URL that expires after six hours. Creating a temporary link does not create an account or save personal data to Google. The user explicitly chooses whether to keep the deck with Google Sign-In.

Machine-readable resources: llms.txt and OpenAPI