FoPost LogoFoPost Docs

API Overview

Overview of the FoPost REST API.

API Overview

The OwlStack API is a REST API at https://api.owlstack.app/v1. All requests require authentication and return JSON.

Base URL

https://api.owlstack.app/v1

Authentication

Include your API key in the Authorization header:

Authorization: Bearer your-api-key-here

Response format

All responses follow this structure:

{
  "data": { ... },
  "meta": {
    "request_id": "req_abc123",
    "timestamp": "2026-02-14T10:00:00Z"
  }
}

Error responses:

{
  "error": {
    "code": "validation_error",
    "message": "The platforms field is required.",
    "details": { ... }
  },
  "meta": {
    "request_id": "req_abc123"
  }
}

HTTP status codes

CodeDescription
200Success
201Created
400Bad request (validation error)
401Unauthorized (invalid API key)
403Forbidden (insufficient plan)
404Not found
422Unprocessable entity
429Rate limited
500Server error

SDKs

While you can call the API directly, we recommend using an SDK:

  • PHP SDKowlstack/core
  • Laravelowlstack/laravel
  • WordPressowlstack/wordpress
  • Node.js@owlstack/node (coming soon)

On this page