Origami Risk RMIS API
origamirisk.com · Company
REST API for Origami Risk — a top-ranked Risk Management Information System (RMIS) and insurance program management platform. Origami manages risk, claims, safety, compliance, and insurance program data for self-insureds, captives, and risk managers. The API enables integration with ERP systems (SAP, Oracle), HR platforms, carrier portals, and TPA claims systems. Origami is a direct competitor to Riskonnect and Ventiv.
Authentication
Parameter name: X-Origami-ApiKey (in header)
Sample Requests
Creates a new safety incident record. Triggers configurable notification workflows and incident investigation tasks in Origami.
Hover any highlighted part to learn what it does
| Content-Type | application/json |
| X-Origami-ApiKey auth | YOUR_API_KEY |
{
"location": "Warehouse A, Bay 3",
"severity": "Recordable",
"description": "Employee slipped on wet floor near loading dock",
"incidentDate": "2024-02-28",
"incidentType": "Slip and Fall",
"injuredPerson": {
"name": "Carlos Rivera",
"department": "Logistics",
"employeeId": "EMP-4567"
},
"medicalTreatment": "ER Visit"
}
curl -X POST "https://api.origamirisk.com/v1/incidents" \
-H "Content-Type: application/json" \
-H "X-Origami-ApiKey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"location":"Warehouse A, Bay 3","severity":"Recordable","description":"Employee slipped on wet floor near loading dock","incidentDate":"2024-02-28","incidentType":"Slip and Fall","injuredPerson":{"name":"Carlos Rivera","department":"Logistics","employeeId":"EMP-4567"},"medicalTreatment":"ER Visit"}'import requests
headers = {
"Content-Type": "application/json",
"X-Origami-ApiKey": "YOUR_API_KEY"
}
data = {
"location": "Warehouse A, Bay 3",
"severity": "Recordable",
"description": "Employee slipped on wet floor near loading dock",
"incidentDate": "2024-02-28",
"incidentType": "Slip and Fall",
"injuredPerson": {
"name": "Carlos Rivera",
"department": "Logistics",
"employeeId": "EMP-4567"
},
"medicalTreatment": "ER Visit"
}
response = requests.post(
"https://api.origamirisk.com/v1/incidents",
headers=headers,
json=data,
)
print(response.json())const url = 'https://api.origamirisk.com/v1/incidents';
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Origami-ApiKey': 'YOUR_API_KEY'
},
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
"location": "Warehouse A, Bay 3",
"severity": "Recordable",
"description": "Employee slipped on wet floor near loading dock",
"incidentDate": "2024-02-28",
"incidentType": "Slip and Fall",
"injuredPerson": {
"name": "Carlos Rivera",
"department": "Logistics",
"employeeId": "EMP-4567"
},
"medicalTreatment": "ER Visit"
}),
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"bytes"
"encoding/json"
)
func main() {
targetURL := "https://api.origamirisk.com/v1/incidents"
jsonData, _ := json.Marshal({"location":"Warehouse A, Bay 3","severity":"Recordable","description":"Employee slipped on wet floor near loading dock","incidentDate":"2024-02-28","incidentType":"Slip and Fall","injuredPerson":{"name":"Carlos Rivera","department":"Logistics","employeeId":"EMP-4567"},"medicalTreatment":"ER Visit"})
req, _ := http.NewRequest("POST", targetURL, bytes.NewBuffer(jsonData))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-Origami-ApiKey", "YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.origamirisk.com/v1/incidents")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["Content-Type"] = "application/json"
req["X-Origami-ApiKey"] = "YOUR_API_KEY"
req["Content-Type"] = "application/json"
req.body = "{\"location\":\"Warehouse A, Bay 3\",\"severity\":\"Recordable\",\"description\":\"Employee slipped on wet floor near loading dock\",\"incidentDate\":\"2024-02-28\",\"incidentType\":\"Slip and Fall\",\"injuredPerson\":{\"name\":\"Carlos Rivera\",\"department\":\"Logistics\",\"employeeId\":\"EMP-4567\"},\"medicalTreatment\":\"ER Visit\"}"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.origamirisk.com/v1/incidents";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"Content-Type: application/json",
"X-Origami-ApiKey: YOUR_API_KEY",
"Content-Type: application/json"
]),
"content" => json_encode({"location":"Warehouse A, Bay 3","severity":"Recordable","description":"Employee slipped on wet floor near loading dock","incidentDate":"2024-02-28","incidentType":"Slip and Fall","injuredPerson":{"name":"Carlos Rivera","department":"Logistics","employeeId":"EMP-4567"},"medicalTreatment":"ER Visit"}),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns claims data filtered by insurance program, date range, and status. Used for loss run reporting and program analytics.
Hover any highlighted part to learn what it does
| X-Origami-ApiKey auth | YOUR_API_KEY |
curl -X GET "https://api.origamirisk.com/v1/claims?dateTo=2024-12-31&status=Open&dateFrom=2024-01-01&pageSize=50&programId=PROG-WC-2024" \ -H "X-Origami-ApiKey: YOUR_API_KEY"
import requests
params = {
"dateTo": "2024-12-31",
"status": "Open",
"dateFrom": "2024-01-01",
"pageSize": "50",
"programId": "PROG-WC-2024"
}
headers = {
"X-Origami-ApiKey": "YOUR_API_KEY"
}
response = requests.get(
"https://api.origamirisk.com/v1/claims",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.origamirisk.com/v1/claims');
url.searchParams.set('dateTo', '2024-12-31');
url.searchParams.set('status', 'Open');
url.searchParams.set('dateFrom', '2024-01-01');
url.searchParams.set('pageSize', '50');
url.searchParams.set('programId', 'PROG-WC-2024');
const response = await fetch(url, {
headers: {
'X-Origami-ApiKey': 'YOUR_API_KEY'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.origamirisk.com/v1/claims")
q := baseURL.Query()
q.Set("dateTo", "2024-12-31")
q.Set("status", "Open")
q.Set("dateFrom", "2024-01-01")
q.Set("pageSize", "50")
q.Set("programId", "PROG-WC-2024")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("X-Origami-ApiKey", "YOUR_API_KEY")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.origamirisk.com/v1/claims")
uri.query = URI.encode_www_form({
"dateTo" => "2024-12-31",
"status" => "Open",
"dateFrom" => "2024-01-01",
"pageSize" => "50",
"programId" => "PROG-WC-2024"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["X-Origami-ApiKey"] = "YOUR_API_KEY"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.origamirisk.com/v1/claims?" . http_build_query([
"dateTo" => "2024-12-31",
"status" => "Open",
"dateFrom" => "2024-01-01",
"pageSize" => "50",
"programId" => "PROG-WC-2024"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"X-Origami-ApiKey: YOUR_API_KEY"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- API keys provisioned through Origami admin portal (Settings > Integrations) or via [email protected]
- Each Origami instance is tenant-specific — base URL may include tenant subdomain
- Origami's data model: Programs > Policies > Claims > Incidents — align queries to this hierarchy
- Custom fields (configured per client) are accessible via the /customfields endpoint
- Batch import available for mass claim/incident uploads via /import endpoint
- Origami provides Postman collections in their developer documentation portal
What can you build with Origami Risk RMIS API?
Origami Risk RMIS API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
API Key authentication. You'll receive a key after signing up. Send it with every request — in a header or query parameter. Keep it out of client-side code and never commit it to version control. Origami Risk RMIS API is a paid API — check the provider's pricing page before building a production integration.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?