POST/v1/Anthropic/analyze-design

Create Anthropic analyze design

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

imageobjectAttachedImage
fileNamestringnullable
mediaTypestringnullable
base64Datastringnullable
descriptionstringnullable
promptstringnullable

Responses

No response body.

curl --request POST \
  --url 'https://api.4comply.io/v1/Anthropic/analyze-design' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "image": {
    "fileName": "Example name",
    "mediaType": "application/json",
    "base64Data": "ZXhhbXBsZQ==",
    "description": "Example text"
  },
  "prompt": "Example text"
}'