← All categories

Documents

Create and share Google Docs programmatically from markdown content

Create formatted Google Docs from markdown and share via link

create-google-doc

Recommended

Google Docs API

by Google

Universal format. Everyone can open it. OAuth authentication, then create/edit/share via API. Headless after initial setup.

Auth: oauth2
Setup: medium
Pricing: Free

Example API call

POST https://docs.googleapis.com/v1/documents

{
  "title": "Meeting Summary - Acme Corp"
}

// Response:
{
  "documentId": "1abc...xyz",
  "title": "Meeting Summary - Acme Corp"
}
View full docs →