API Docs

Inksong for developers

REST API to humanize AI text from any application. Auth via API key. Three core endpoints. Full integration in under 50 lines.

Quickstart

Get an API key from your dashboard, then:

# Upload a document
curl -X POST https://api.inksong.app/api/v1/documents/upload \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@my-draft.docx" \
  -F "tone=balanced" \
  -F "humanness_level=50"
# → {"job_id":"abc123","status":"pending",...}

# Poll until complete
curl https://api.inksong.app/api/v1/documents/abc123 \
  -H "X-API-Key: YOUR_API_KEY"
# → {"status":"completed","humanized_text":"...","original_ai_score":85,...}

# Download the formatted output
curl -L -o humanized.docx \
  https://api.inksong.app/api/v1/documents/abc123/download \
  -H "X-API-Key: YOUR_API_KEY"

Full OpenAPI spec at https://api.inksong.app/openapi.json.

Reference

Need an API key?

Sign in and generate one from the dashboard.

  • 5 documents/month on the free tier
  • No credit card required
  • Cancel or upgrade anytime