For the complete documentation index, see llms.txt. This page is also available as Markdown.

Requests & Responses

Request Format

The Origin Studio API follows REST principles and the JSON:API 1.1 specification.

All requests must:

  • Use HTTPS

  • Include a valid Authorization header

  • Include Content-Type: application/json for requests with a body

  • Include Accept: application/json


Required Headers

Authorization: Bearer YOUR_API_KEY
Accept: application/json
Content-Type: application/json

⚠️ The Content-Type header is required for POST, PUT, and PATCH requests.


Example: Create a Record

POST /v1/records

Headers:

Body:


Response Format

All responses are returned in JSON and conform to the JSON:API 1.1 specification.

A typical response includes:

  • data — the primary resource object

  • attributes — record properties

  • relationships — linked resources

  • meta — additional metadata

  • links — related resource URLs

  • jsonapi — API version information


Example Response Structure


Example: Search Record

Headers:

Body:


Response Format

All responses are returned in JSON and conform to the JSON:API 1.1 specification.

A typical response includes:

  • data — the primary resource object

  • attributes — record properties

  • relationships — linked resources

  • meta — additional metadata

  • links — related resource URLs

  • jsonapi — API version information


Example Response Structure

Last updated