# Data Delivery Using S3 Our preferred mode of data delivery is through **Amazon AWS S3**. ## How to Set Up S3 Delivery To receive data via **S3**, follow these steps: ### 1. Sign Into AWS Log into the **AWS S3 console**. ### 2. Create an S3 Bucket - **Create a new bucket** for deliveries (e.g., `s3://YOURCOMPANY-data-deliveries`). ### 3. Configure Bucket Policy To allow **Forager.ai** to send data to your S3 bucket, you will need to apply the following **bucket policy**: #### 📌 **Bucket Policy (Replace `YOURCOMPANY-data-deliveries` with your actual bucket name)** ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:GetObjectVersion", "s3:DeleteObject", "s3:DeleteObjectVersion" ], "Resource": "arn:aws:s3:::/*" }, { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation" ], "Resource": "arn:aws:s3:::", "Condition": { "StringLike": { "s3:prefix": [ "*" ] } } } ] } ``` ### 4. Provide AWS Access Keys Once the bucket is set up, send the following details to Forager.ai: - AWS Access Key - AWS Secret Key Our team will configure the data delivery to send data directly to your S3 bucket. ## File output paths and file names Read more about file paths [here](/data-license/v2/output-data-file-details). ## Need Help? 📩 For Support: Contact us at support@forager.ai.