Get Started

Content Conversion

Parched.dev uses ArchieML to transform your Google Docs into structured JSON data that's ready to use in your applications.

Google Doc with ArchieML

{title} My First Blog Post {date} January 15, 2023 {author} name: Jane Smith email: [email protected] {/author} {content} # Introduction This is a sample blog post written in Google Docs using ArchieML syntax. ## Key Points * Easy to write and edit * No special CMS to learn * Works with your existing documents [.image] url: https://example.com/image.jpg caption: A beautiful landscape photo credit: John Photographer [/.image] {/content} {tags} * headless cms * content management * google docs {/tags}

JSON API Response

{ "title": "My First Blog Post", "date": "January 15, 2023", "author": { "name": "Jane Smith", "email": "[email protected]" }, "content": { "text": "# Introduction\n\nThis is a sample blog post written in Google Docs using ArchieML syntax.\n\n## Key Points\n\n* Easy to write and edit\n* No special CMS to learn\n* Works with your existing documents", "image": { "url": "https://example.com/image.jpg", "caption": "A beautiful landscape photo", "credit": "John Photographer" } }, "tags": [ "headless cms", "content management", "google docs" ] }

Benefits of Our Content Conversion

  • Structured Data: Turn your free-form documents into well-organized JSON objects.
  • Familiar Interface: No new CMS to learn—just use Google Docs as your editor.
  • Collaborative: Multiple team members can work on the same document with Google's powerful collaboration tools.

Real-time Updates

Changes in Google Docs are reflected in your API within seconds—no manual publishing or complex workflows.

Always Fresh Content

Changes you make in Google Docs are automatically reflected in your API. No manual publishing steps needed.

Fetch On Demand

Make API requests whenever you need the latest content. Perfect for static sites that rebuild on schedule.

Webhooks (Coming Soon)

Get notified immediately when content changes with webhooks. Automatically trigger rebuilds or update your application.

Real-time Updates

Your content is synchronized within seconds of making changes in Google Docs.

Integration Simplicity

Parched.dev integrates with any platform or framework. No complex setup, just a simple API call away.

Node.js

// Using fetch API const fetchContent = async () => { const response = await fetch( 'https://api.parched.dev/v1/docs/YOUR_DOC_ID', { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } } ); const data = await response.json(); return data; };

React Component

import { useState, useEffect } from 'react'; function BlogPost({ docId }) { const [post, setPost] = useState(null); useEffect(() => { async function loadPost() { const res = await fetch( `https://api.parched.dev/v1/docs/${docId}`, { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } } ); const data = await res.json(); setPost(data); } loadPost(); }, [docId]); if (!post) return <div>Loading...</div>; return ( <article> <h1>{post.title}</h1> <div dangerouslySetInnerHTML={{ __html: post.content }} /> </article> );}

Python

import requests def get_parched_content(doc_id, api_key): url = f"https://api.parched.dev/v1/docs/{doc_id}" headers = { "Authorization": f"Bearer {api_key}" } response = requests.get(url, headers=headers) if response.status_code == 200: return response.json() else: print(f"Error: {response.status_code}") return None

Available Integrations

Next.js

React

Vue

Gatsby

Nuxt

Astro

Svelte

Any Framework

Access Management

Control who can access and edit your content through Google's familiar permission system.

Content Editors

  • Share documents with writers and editors
  • Track changes and suggestions
  • Control edit vs. view access

API Access

  • Secure API keys for developers
  • Manage read-only API tokens
  • Revoke access at any time

How We Compare

Feature Parched.dev Traditional CMS Headless CMS
Learning Curve Very Low Medium High
Content Editing Google Docs Custom UI Custom UI
Setup Time Minutes Hours/Days Hours/Days
API Access Limited
Collaboration Google-level Basic Basic

Ready to transform your content workflow?

Get started with Parched.dev today and see how easy it is to deliver your content anywhere.

Ready to try it?

Sign up and get your first doc API in minutes.

Get Started for Free