Skip to main content

Common Mistakes

MistakeConsequencePrevention
No filters on wide date rangeMassive export; large credit spendAdd wallet/token filter for initial runs; estimate first
Selecting all fieldsLarger-than-necessary exportStart with the minimum fields you actually need
Expecting metadata in outputNo token names, symbols, logos, or spam labelsPlan separate metadata enrichment post-export
No S3 destination configuredExport cannot proceedSet up bucket and IAM before hitting Export
Incorrect bucket permissionsJob failureConfirm IAM policy includes s3:PutObject on the correct bucket ARN
Skipping the estimateUnexpected credit spendAlways estimate — it’s free and instant
Topping up after clicking ExportExport may fail if credits run out; 5-minute window expiresTop up before running the estimate

Failed Exports

The most common cause of failed exports is incorrect bucket credentials or missing write permissions on the IAM user. Double-check that:
  • The access key is active and has not been revoked
  • The IAM policy includes s3:PutObject on the correct bucket ARN
  • The bucket name and region match your S3 configuration in Datashare

Minimal IAM Policy

If you don’t want to use AmazonS3FullAccess, you only need these three permissions on your bucket:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "s3:PutObject",
        "s3:GetObject",
        "s3:ListBucket"
      ],
      "Resource": [
        "arn:aws:s3:::YOUR-BUCKET-NAME",
        "arn:aws:s3:::YOUR-BUCKET-NAME/*"
      ]
    }
  ]
}
Replace YOUR-BUCKET-NAME with your actual S3 bucket name.

Job States

StateMeaningAction
PendingJob queued, awaiting startWait for processing to begin
RunningData extraction and S3 writing in progressMonitor progress on the dashboard
CompletedExport finished — data is in your bucketAccess data via S3 Console, CLI, or analytics tooling
FailedError occurredCheck credentials, permissions, and bucket configuration
There is no UI download link for completed exports. Data is accessed directly from your S3 bucket.

High Estimates

If your estimate is higher than expected, check for:
  • Overly wide date ranges — narrow to a single day or week
  • Too many selected fields — start with the minimum you need
  • Missing wallet or token filters — add filters to target specific activity
Estimates are free — iterate until the scope looks right before exporting.