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
AuthorizationheaderInclude
Content-Type: application/jsonfor requests with a bodyInclude
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/recordsHeaders:
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 objectattributes— record propertiesrelationships— linked resourcesmeta— additional metadatalinks— related resource URLsjsonapi— 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 objectattributes— record propertiesrelationships— linked resourcesmeta— additional metadatalinks— related resource URLsjsonapi— API version information
Example Response Structure
Last updated