Validate an image URL
singular_check_image_urlValidate an image URL to confirm it is well-formed, reachable, and returns image content, preventing errors in graphics.
Instructions
Check that an image URL is well-formed, reachable, and looks like an image (by Content-Type or extension) before using it in set_image. Useful for pre-flighting rundown graphics.
Args: imageUrl; response_format. Returns { ok, status, contentType, reason }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| imageUrl | Yes | The image URL to validate. | |
| response_format | No | Output format: 'markdown' (human-readable) or 'json' (machine-readable). Default 'markdown'. | markdown |