Stratalize — attested finance, legal, healthcare, and compliance intelligence
Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Travel nurse bill rate benchmarks by specialty and state — ICU, ER, OR, and med-surg medians from BLS and SIA data. Source: BLS and Stratalize SIA-style composite. Use when benchmarking travel nurse contract rates or negotiating with a staffing agency
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
www.stratalize.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5d51ECC50813E0937a5c43be298E9146796ad60d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "6kswsVRgpf32jWRLAeRxaiqJ9Y7bn9jHMzv5aqF1dQDX",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "finance",
"description": "Travel nurse bill rate benchmarks by specialty and state — ICU, ER, OR, and med-surg medians from BLS and SIA data. Source: BLS and Stratalize SIA-style composite. Use when benchmarking travel nurse contract rates or negotiating with a staffing agency. Cryptographically attested with a post-quantum signed settlement receipt. Verify at trust.stratalize.com/verify.",
"discoverable": true,
"iconUrl": "https://www.stratalize.com/stratalize-logo-400.png",
"info": {
"input": {
"body": {
"specialty": "example",
"state": "TX"
},
"bodyType": "json",
"inputSchema": {
"properties": {
"specialty": {
"description": "Request parameter: specialty",
"type": "string"
},
"state": {
"description": "Request parameter: state",
"type": "string"
}
},
"required": [
"specialty",
"state"
],
"type": "object"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data_source": "Stratalize governed intelligence",
"freshness": "live",
"receipt_id": "rcpt_example",
"tool": "get_travel_nurse_rate_benchmark",
"verified_at": "https://trust.stratalize.com/verify?synthesis_id=example"
},
"schema": {
"properties": {
"data_source": {
"type": "string"
},
"freshness": {
"type": "string"
},
"receipt_id": {
"description": "Cryptographic receipt identifier",
"type": "string"
},
"tool": {
"type": "string"
},
"verified_at": {
"description": "Receipt verification URL at trust.stratalize.com/verify",
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"type": "json"
}
},
"inputSchema": {
"properties": {
"specialty": {
"description": "Request parameter: specialty",
"type": "string"
},
"state": {
"description": "Request parameter: state",
"type": "string"
}
},
"required": [
"specialty",
"state"
],
"type": "object"
},
"logoUrl": "https://www.stratalize.com/stratalize-logo-400.png",
"name": "Travel Nurse Rate Benchmark",
"outputSchema": {
"properties": {
"data_source": {
"type": "string"
},
"freshness": {
"type": "string"
},
"receipt_id": {
"description": "Cryptographic receipt identifier",
"type": "string"
},
"tool": {
"type": "string"
},
"verified_at": {
"description": "Receipt verification URL at trust.stratalize.com/verify",
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"providerLogoUrl": "https://www.stratalize.com/stratalize-logo-400.png",
"providerName": "Stratalize",
"providerWebsite": "https://www.stratalize.com",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"specialty": {
"description": "Request parameter: specialty",
"type": "string"
},
"state": {
"description": "Request parameter: state",
"type": "string"
}
},
"required": [
"specialty",
"state"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data_source": {
"type": "string"
},
"freshness": {
"type": "string"
},
"receipt_id": {
"description": "Cryptographic receipt identifier",
"type": "string"
},
"tool": {
"type": "string"
},
"verified_at": {
"description": "Receipt verification URL at trust.stratalize.com/verify",
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"serviceIconUrl": "https://www.stratalize.com/stratalize-logo-400.png",
"serviceName": "Stratalize",
"serviceTags": [
"governance",
"finance",
"healthcare",
"intelligence"
],
"tags": [
"attested",
"finance",
"travel",
"nurse",
"rate"
]
}
}Use it
curl
curl "https://www.stratalize.com/api/x402/travel-nurse-rate-benchmark" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.stratalize.com/api/x402/travel-nurse-rate-benchmark");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://www.stratalize.com/api/x402/travel-nurse-rate-benchmark")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6291.json, and this resource appears in /discovery/resources and /discovery/search.