> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.flare.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Bucket Object

The `bucket_object` type represents individual files (objects) discovered within a publicly exposed cloud storage bucket, such as Amazon S3, Azure Blob Storage, or Google Cloud Storage.
Each record identifies a single accessible object and includes the bucket it was found in (host and provider).

```json Bucket Object theme={null}
{
    "event_type": "bucket_object",
    "metadata": {
        "estimated_created_at": "2025-01-01T00:00:00",
        "flare_url": "https://app.flare.io/#/uid",
        "matched_at": null,
        "severity": "info",
        "uid": "index/source/id"
    },
    "data": {
        "url": "https://bucket.public.com/file.txt",
        "bucket": {
            "host": "bucket.public.com",
            "provider": "s3"
        }
    }
}
```
