Facebook Export to CSV

Convert Facebook API export JSON to CSV format

Click to upload or drag and drop

JSON files only (max 10MB)

Need help? View JSON format example

Expected JSON Format

Your JSON should contain a "data" array with account objects:

{
  "data": [
    {
      "name": "Account Name",
      "account_id": "1234567890",
      "currency": "EUR",
      "id": "act_1234567890",
      "funding_source_details": {
        "id": "9876543210",
        "display_string": "VISA *1234",
        "type": 1,
        "coupons": [
          {
            "amount": "10.00",
            "currency": "EUR",
            "expiration": "2025-12-31"
          }
        ]
      }
    }
  ]
}

CSV Output Columns

  • name
  • account_id
  • currency
  • id
  • funding_source_id
  • funding_source_display
  • funding_source_type
  • coupon_amount
  • coupon_currency
  • coupon_expiration