Skip to main content
export interface ImageUrlContentItem {
  type: "image-url";
  image_type: "png" | "jpeg" | "gif" | "webp";
  data: string;
}
Represents image content provided as a URL for AI extraction. Used when passing image URLs directly to extractStructuredData without a page source. The image will be fetched from the URL and analyzed by AI vision models for data extraction.