License compatibility audit
Classify software dependency licenses and flag packages that need commercial or legal review.
$0.05 USDCBasex402 v2POST
Endpoint
https://apiacre.com/v1/developer/license-auditSend the JSON body below. An unpaid request returns HTTP 402 with a PAYMENT-REQUIRED header; an x402-compatible buyer signs the requirement and retries with PAYMENT-SIGNATURE.
Input example
{
"dependencies": [
{
"name": "requests",
"license": "Apache-2.0"
}
]
}Response shape
{
"request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
"service": "developer.license-audit",
"version": "1",
"data": {
"policy": "example",
"counts": {},
"requiresReview": true,
"findings": [],
"disclaimer": "example"
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": []
}
}Try the payment challenge
curl -i -X POST 'https://apiacre.com/v1/developer/license-audit' \
-H 'content-type: application/json' \
--data '{"dependencies":[{"name":"requests","license":"Apache-2.0"}]}'