# apiacre.com License Audit

> apiacre.com License Audit is a paid API for AI agents from apiacre.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Classifies software dependency licenses and flags packages requiring commercial or legal review.

## Facts

- Endpoint: POST https://apiacre.com/v1/developer/license-audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apiacre-com-license-audit-7fbedae4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-dSmCqbWCMDGgtNq6M6xu

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apiacre-com-license-audit-7fbedae4 -d '<json body>'
```

Example prompt: Can you audit the licenses for my project dependencies — I have lodash@4.17.21, react@18.2.0, and gpl-module@2.0.0 — and flag any packages that would need legal or commercial review before we ship?

## When to prefer this

Choose this endpoint when you need to classify and assess the legal/commercial risk of open source dependency licenses — particularly when preparing for a product release, enterprise audit, or vendor review. It complements vulnerability scanning (which checks CVEs) by focusing specifically on license compliance and commercial use restrictions rather than security issues.

## Known failure modes

- Unknown or unrecognized package names may return unclassified results
- Packages without declared licenses may be flagged as unknown
- Malformed or incomplete dependency lists may cause validation errors
- Very new or obscure packages may lack license metadata
- Rate limiting or payment failures may prevent processing

## How this service works

Classify software dependency licenses and flag packages that need commercial or legal review.

## Output

Returns a structured list of dependencies with their identified license types (e.g. MIT, GPL-3.0, Apache-2.0), a classification of each license's commercial/copyleft risk level, and a flagged list of packages that require commercial licensing agreements or legal review before use in production.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "policy": {
   "enum": [
    "permissive",
    "commercial"
   ],
   "type": "string",
   "title": "Policy",
   "default": "commercial"
  },
  "dependencies": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "LicensedDependency",
    "required": [
     "name",
     "license"
    ],
    "properties": {
     "name": {
      "type": "string",
      "title": "Name",
      "maxLength": 240,
      "minLength": 1
     },
     "license": {
      "type": "string",
      "title": "License",
      "maxLength": 120,
      "minLength": 1
     }
    }
   },
   "title": "Dependencies",
   "maxItems": 500,
   "minItems": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "counts": {
    "allow": 1
   },
   "policy": "commercial",
   "findings": [
    {
     "name": "requests",
     "action": "No standard copyleft obligation detected",
     "license": "Apache-2.0",
     "classification": "allow"
    }
   ],
   "disclaimer": "Automated classification is not legal advice.",
   "requiresReview": false
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "developer.license-audit",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-com-license-audit-7fbedae4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
