Playgun API

Introduction

Getting started with the Playgun API

Playgun API

Welcome to the Playgun API documentation. This API allows you to programmatically access your content from Playgun products.

Available Products

ProductDescriptionStatus
ParableBlog and article writing platformAvailable
CaptureQuick capture for notes, tasks, and postsComing Soon

Quick Start

  1. Create an API Key - Go to your Parable settings and create a new API key
  2. Make a Request - Use the key to authenticate requests to the API
  3. Fetch Content - Retrieve your published articles in a clean, structured format
curl -H "Authorization: Bearer pk_live_your_key" \
  https://aware-squirrel-935.convex.site/api/v1/parable/articles

Base URL

All API requests should be made to:

https://aware-squirrel-935.convex.site/api/v1

Response Format

All responses are returned in JSON format. Successful responses have a data field containing the result:

{
  "data": { ... }
}

Error responses include an error field with a description:

{
  "error": "Invalid API key"
}

Need Help?