Using the Makrly Developer API to Automate Content

1 min read·Updated Mar 6, 2026

Using the Makrly Developer API to Automate Content

Makrly offers a REST API that enables developers to integrate social post generation and changelog management into their own workflows.

Authentication

  • Use your API key as a Bearer token in the Authorization header.
  • API keys are created and managed in your dashboard under Settings → API.
  • Keys can be scoped per repo and permission (read/write).

Key Endpoints

  • Repositories: List and get details of connected repos.
  • Posts: Fetch generated posts or generate posts from custom text.
  • Changelog Entries: Create, update, delete, and list changelog entries.
  • Settings: Read and update changelog widget settings.
  • Commits: List notable commits.

Rate Limits

  • Free tier: 100 requests/hour
  • Paid tiers: 1,000 requests/hour

Example Request

curl -H "Authorization: Bearer mk_live_your_key" https://makrly.com/api/v1/repos

Best Practices

  • Use server-side calls only to protect your API key.
  • Handle pagination for listing endpoints.
  • Respect rate limits to avoid errors.

For full API specification, visit: https://makrly.com/openapi.yaml

Was this article helpful?