Facebookget/facebook_marketplace_vehicles_listings

Get Marketplace Vehicles Search Results

Facebook Marketplace Listings
Cost / request

$0.01

Response format

JSON

Protocol

REST

About this endpoint

Access Facebook data through agntdata: Get Marketplace Vehicles Search Results. Fetch Vehicles listings from the marketplace. Responses are structured JSON for AI agents, analytics, and automation — one API key instead of juggling upstream accounts. Ideal when you need page and group posts, marketplace listings, video content, and ad discovery programmatically.

Use cases

AI agents that need Facebook data in structured form
Analytics and monitoring pipelines for Facebook content
Research and GTM workflows that combine Facebook signals with other data

Parameters

NameInTypeRequiredDescription
after_timequerystringoptional
end_cursorquerystringoptional
exact_matchquerybooleanoptional
before_timequerystringoptional
sort_byquerystringoptional
filter_location_latitudequerystringoptionalDefault: 40.7142
filter_price_upper_boundquerynumberoptionalDefault: 214748364700
proxy_countryquerystringoptional
is_c2c_listing_onlyquerybooleanoptionalThis field indicates whether the listings are from individual sellers only
filter_price_lower_boundquerynumberoptionalDefault: 0
filter_location_longitudequerystringoptionalDefault: -74.0064
filter_radius_kmquerynumberoptionalDefault: 65

Responses

Response

{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "page_info": {
          "type": "object",
          "properties": {
            "end_cursor": {
              "type": "string"
            },
            "has_next": {
              "type": "boolean"
            }
          }
        },
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "listingUrl": {
                "type": "string"
              },
              "id": {
                "type": "string"
              },
              "primary_listing_photo": {
                "type": "object",
                "properties": {
                  "__typename": {
                    "type": "string"
                  },
                  "id": {
                    "type": "string"
                  },
                  "photo_image_url": {
                    "type": "string"
                  }
                }
              },
              "listing_price": {
                "type": "object",
                "properties": {
                  "formatted_amount": {
                    "type": "string"
                  },
                  "amount_with_offset_in_currency": {
                    "type": "string"
                  },
                  "amount": {
                    "type": "string"
                  }
                }
              },
              "strikethrough_price": {
                "nullable": true
              },
              "comparable_price": {
                "nullable": true
              },
              "comparable_price_type": {
                "nullable": true
              },
              "location": {
                "type": "object",
                "properties": {
                  "reverse_geocode": {
                    "type": "object",
                    "properties": {
                      "city": {
                        "type": "string"
                      },
                      "state": {
                        "type": "string"
                      },
                      "city_page": {
                        "type": "object",
                        "properties": {
                          "display_name": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              },
              "is_hidden": {
                "type": "boolean"
              },
              "is_live": {
                "type": "boolean"
              },
              "is_pending": {
                "type": "boolean"
              },
              "is_sold": {
                "type": "boolean"
              },
              "is_viewer_seller": {
                "type": "boolean"
              },
              "min_listing_price": {
                "nullable": true
              },
              "max_listing_price": {
                "nullable": true
              },
              "marketplace_listing_category_id": {
                "type": "string"
              },
              "marketplace_listing_title": {
                "type": "string"
              },
              "custom_title": {
                "type": "string"
              },
              "custom_sub_titles_with_rendering_flags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "subtitle": {
                      "type": "string"
                    }
                  }
                }
              },
              "origin_group": {
                "nullable": true
              },
              "listing_video": {
                "nullable": true
              },
              "parent_listing": {
                "nullable": true
              },
              "marketplace_listing_seller": {
                "type": "object",
                "properties": {
                  "__typename": {
                    "type": "string"
                  },
                  "name": {
                    "nullable": true
                  },
                  "id": {
                    "nullable": true
                  }
                }
              },
              "delivery_types": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}

Agent / Developer Schema

Machine-readable formats for integrating this endpoint into AI agents and toolchains.

{
  "operationId": "Get_Marketplace_Vehicles_Search_Results",
  "method": "get",
  "path": "/facebook_marketplace_vehicles_listings",
  "summary": "Get Marketplace Vehicles Search Results",
  "description": "Fetch Vehicles listings from the marketplace.",
  "parameters": [
    {
      "name": "after_time",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "end_cursor",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "exact_match",
      "in": "query",
      "required": false,
      "schema": {
        "type": "boolean"
      }
    },
    {
      "name": "before_time",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "sort_by",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "filter_location_latitude",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "40.7142"
      }
    },
    {
      "name": "filter_price_upper_bound",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "214748364700"
      }
    },
    {
      "name": "proxy_country",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "is_c2c_listing_only",
      "in": "query",
      "required": false,
      "schema": {
        "type": "boolean"
      },
      "description": "This field indicates whether the listings are from individual sellers only"
    },
    {
      "name": "filter_price_lower_bound",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "0"
      }
    },
    {
      "name": "filter_location_longitude",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "-74.0064"
      }
    },
    {
      "name": "filter_radius_km",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "65"
      }
    }
  ],
  "responses": [
    {
      "statusCode": "200",
      "description": "Response",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "data": {
                "type": "object",
                "properties": {
                  "page_info": {
                    "type": "object",
                    "properties": {
                      "end_cursor": {
                        "type": "string"
                      },
                      "has_next": {
                        "type": "boolean"
                      }
                    }
                  },
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "listingUrl": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "primary_listing_photo": {
                          "type": "object",
                          "properties": {
                            "__typename": {
                              "type": "string"
                            },
                            "id": {
                              "type": "string"
                            },
                            "photo_image_url": {
                              "type": "string"
                            }
                          }
                        },
                        "listing_price": {
                          "type": "object",
                          "properties": {
                            "formatted_amount": {
                              "type": "string"
                            },
                            "amount_with_offset_in_currency": {
                              "type": "string"
                            },
                            "amount": {
                              "type": "string"
                            }
                          }
                        },
                        "strikethrough_price": {
                          "nullable": true
                        },
                        "comparable_price": {
                          "nullable": true
                        },
                        "comparable_price_type": {
                          "nullable": true
                        },
                        "location": {
                          "type": "object",
                          "properties": {
                            "reverse_geocode": {
                              "type": "object",
                              "properties": {
                                "city": {
                                  "type": "string"
                                },
                                "state": {
                                  "type": "string"
                                },
                                "city_page": {
                                  "type": "object",
                                  "properties": {
                                    "display_name": {
                                      "type": "string"
                                    },
                                    "id": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        },
                        "is_hidden": {
                          "type": "boolean"
                        },
                        "is_live": {
                          "type": "boolean"
                        },
                        "is_pending": {
                          "type": "boolean"
                        },
                        "is_sold": {
                          "type": "boolean"
                        },
                        "is_viewer_seller": {
                          "type": "boolean"
                        },
                        "min_listing_price": {
                          "nullable": true
                        },
                        "max_listing_price": {
                          "nullable": true
                        },
                        "marketplace_listing_category_id": {
                          "type": "string"
                        },
                        "marketplace_listing_title": {
                          "type": "string"
                        },
                        "custom_title": {
                          "type": "string"
                        },
                        "custom_sub_titles_with_rendering_flags": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "subtitle": {
                                "type": "string"
                              }
                            }
                          }
                        },
                        "origin_group": {
                          "nullable": true
                        },
                        "listing_video": {
                          "nullable": true
                        },
                        "parent_listing": {
                          "nullable": true
                        },
                        "marketplace_listing_seller": {
                          "type": "object",
                          "properties": {
                            "__typename": {
                              "type": "string"
                            },
                            "name": {
                              "nullable": true
                            },
                            "id": {
                              "nullable": true
                            }
                          }
                        },
                        "delivery_types": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "example": {
            "data": {
              "page_info": {
                "end_cursor": "{\"basic\":{\"item_index\":28},\"ads\":{\"items_since_last_ad\":25,\"items_retrieved\":24,\"ad_index\":0,\"ad_slot\":0,\"dynamic_gap_rule\":0,\"counted_organic_items\":0,\"average_organic_score\":0,\"is_dynamic_gap_rule_set\":false,\"first_organic_score\":0,\"is_dynamic_initial_gap_set\":false,\"iterated_organic_items\":0,\"top_organic_score\":0,\"feed_slice_number\":1,\"feed_retrieved_items\":25,\"ad_req_id\":0,\"refresh_ts\":0,\"cursor_id\":5074,\"mc_id\":0,\"ad_index_e2e\":0,\"seen_ads\":{\"ad_ids\":[],\"page_ids\":[]},\"has_ad_index_been_reset\":false,\"is_reconsideration_ads_dropped\":false},\"boosted_ads\":{\"items_since_last_ad\":0,\"items_retrieved\":0,\"ad_index\":0,\"ad_slot\":0,\"dynamic_gap_rule\":0,\"counted_organic_items\":0,\"average_organic_score\":0,\"is_dynamic_gap_rule_set\":false,\"first_organic_score\":0,\"is_dynamic_initial_gap_set\":false,\"iterated_organic_items\":0,\"top_organic_score\":0,\"feed_slice_number\":0,\"feed_retrieved_items\":0,\"ad_req_id\":0,\"refresh_ts\":0,\"cursor_id\":41653,\"mc_id\":0,\"ad_index_e2e\":0,\"seen_ads\":{\"ad_ids\":[],\"page_ids\":[]},\"has_ad_index_been_reset\":false,\"is_reconsideration_ads_dropped\":false},\"lightning\":{\"initial_request\":false,\"top_unit_item_ids\":null,\"ranking_signature\":null,\"qid\":null},\"delivered_ids\":{\"delivered_product_item_ids\":[],\"delivered_module_ids\":[]}}",
                "has_next": true
              },
              "items": [
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/648303668248076",
                  "id": "648303668248076",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "122162811302758668",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/585892688_122162811380758668_1535953275122916850_n.jpg?stp=dst-jpg_p843x403_tt6&_nc_cat=105&ccb=1-7&_nc_sid=454cf4&_nc_ohc=B2yrlHvsyT8Q7kNvwErMpnK&_nc_oc=Adm896ZhEFH2TqjpRxtz8WovWuQJPhR79-Vxqq9gQUMau4JFR7n2k3pM_gcCU9XDS9I&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afiw1bpK8yNWznsVIUHjZIofc0rphqrXGLNDNfvhDgTGkQ&oe=69223F24"
                  },
                  "listing_price": {
                    "formatted_amount": "$4,800",
                    "amount_with_offset_in_currency": "480000",
                    "amount": "4800.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Corona",
                      "state": "NY",
                      "city_page": {
                        "display_name": "New York, New York",
                        "id": "108424279189115"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2015 Ford Fusion · SE Sedan 4D",
                  "custom_title": "2015 Ford fusion SE Sedan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "136K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1122983139634869",
                  "id": "1122983139634869",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "122157722150640103",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584102906_122157722192640103_1754667254640100690_n.jpg?stp=c256.0.1536.1536a_dst-jpg_s960x960_tt6&_nc_cat=111&ccb=1-7&_nc_sid=454cf4&_nc_ohc=3bH_4_u7ToAQ7kNvwGZOej_&_nc_oc=AdnYbEtzXk83xsqtqv4Hc1vdaj0RMS0EzHWakUXQYR86mVyba6Rv8yN00yc0VgTIzys&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfjNQkGe9daP5CG0jtyQvAdGZq89pzl1EeyTsCkvpNSN5Q&oe=69220EB7"
                  },
                  "listing_price": {
                    "formatted_amount": "$9,300",
                    "amount_with_offset_in_currency": "930000",
                    "amount": "9300.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Manalapan Twp",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Manalapan, New Jersey",
                        "id": "114626555221367"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2016 Toyota Sienna",
                  "custom_title": "2016 Toyota sienna",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "250K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/736103178785830",
                  "id": "736103178785830",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1816932858957552",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584845737_1816932862290885_7913299420963747204_n.jpg?stp=c0.0.719.719a_dst-jpg_tt6&_nc_cat=109&ccb=1-7&_nc_sid=92e707&_nc_ohc=PlBeGEf0cr4Q7kNvwHh4QHL&_nc_oc=AdlzBbCOiIRJvgZ1gkeFU-mRpqWYuvjV-1mL8nprmj0OKcMJoolJQHSyRqLRVu9IE1s&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfhIkdKW-41RGWxMEob2xs1FP_XkFzb2a2yZhrbuwxBaMQ&oe=69220DAB"
                  },
                  "listing_price": {
                    "formatted_amount": "$14,990",
                    "amount_with_offset_in_currency": "1499000",
                    "amount": "14990.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Hicksville",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Hicksville, New York",
                        "id": "109476165738122"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2020 Hyundai Elantra GT",
                  "custom_title": "2020 Hyundai elantra gt",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "64K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/829172693340657",
                  "id": "829172693340657",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1502835604327957",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/585585785_1502835640994620_3239600935340881476_n.jpg?stp=c0.169.1537.1537a_dst-jpg_s960x960_tt6&_nc_cat=107&ccb=1-7&_nc_sid=454cf4&_nc_ohc=dM13KGFq76EQ7kNvwEBNLBh&_nc_oc=Adkjos3AX4JOEFGARz27f9RjOjFprNOBs7Jdao6SKiClsR97bIZBPwQenZCIUM99lwk&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgT6zKzdT7gkEJ5R-NGwlWehSeFDswq8ivZHSA6r3P2FQ&oe=692237BA"
                  },
                  "listing_price": {
                    "formatted_amount": "$13,000",
                    "amount_with_offset_in_currency": "1300000",
                    "amount": "13000.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Port Washington",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Port Washington, New York",
                        "id": "112694922078314"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2004 Pontiac GTO",
                  "custom_title": "2004 Pontiac gto",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "160K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": {
                    "id": "2296804810742401"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/2318536935278525",
                  "id": "2318536935278525",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "839125632192195",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/586410897_839125682192190_5847478516850039309_n.jpg?stp=dst-jpg_p843x403_tt6&_nc_cat=106&ccb=1-7&_nc_sid=454cf4&_nc_ohc=3Dp322hk9YQQ7kNvwET0NDE&_nc_oc=Adk6Wo_6ECswDeEgsXeT-EuS6WaJB43zG4ZbsHqgzUBUYsyvK-ttcWkB0wXvTd-YT2E&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afi7uxrbjZx33dB-gdPFCeY0twKgwnDzf_QLU9aBCHVMhA&oe=69222B40"
                  },
                  "listing_price": {
                    "formatted_amount": "$4,500",
                    "amount_with_offset_in_currency": "450000",
                    "amount": "4500.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Carlstadt",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Carlstadt, New Jersey",
                        "id": "108274025860899"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2007 Suzuki GSX-R",
                  "custom_title": "2007 Suzuki gsxr",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "19K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/864311349367468",
                  "id": "864311349367468",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "122147176556857488",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/581958053_122147176922857488_403343406763119212_n.jpg?stp=c256.0.1537.1537a_dst-jpg_s960x960_tt6&_nc_cat=111&ccb=1-7&_nc_sid=454cf4&_nc_ohc=Cs31FuKekFEQ7kNvwGGTMEQ&_nc_oc=AdmTr6Iw7SxnUY4f4ZUm7JU83qOKk-KsSHnID5Y8MWb7NMH_7obAo3i4tYMnC0C9yao&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afgg9d10mCpKHlkU7bRzAUtfKGEWPIE2473LW_akkXL-Rw&oe=6922121E"
                  },
                  "listing_price": {
                    "formatted_amount": "$1,900",
                    "amount_with_offset_in_currency": "190000",
                    "amount": "1900.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Linden",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Linden, New Jersey",
                        "id": "104165982951951"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2008 Honda Odyssey · EX-L w/Navigation Minivan 4D",
                  "custom_title": "2008 Honda odyssey EX-L w/Navigation Minivan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "200K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1717530835583431",
                  "id": "1717530835583431",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "122240987036145714",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/583324269_122240987510145714_6220863399842208747_n.jpg?stp=c0.169.1537.1537a_dst-jpg_s960x960_tt6&_nc_cat=104&ccb=1-7&_nc_sid=454cf4&_nc_ohc=7wcge1FehU4Q7kNvwG9QR1v&_nc_oc=Adk0XFWvNeKof1uC_FTjwqXdxuWwlXFiJ8fTYKeXh8d1gW-12zO_SlWHUzWkJOvWBAw&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfjCt3h8AZoA3MgxhNnynEeWX4zyPVsHDu5-f612tHKT7Q&oe=6922414A"
                  },
                  "listing_price": {
                    "formatted_amount": "$5,900",
                    "amount_with_offset_in_currency": "590000",
                    "amount": "5900.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Brooklyn",
                      "state": "NY",
                      "city_page": {
                        "display_name": "New York, New York",
                        "id": "108424279189115"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2008 Jeep Wrangler · Clean Title Jeep- No Problem Car",
                  "custom_title": "2008 Jeep wrangler Clean Title Jeep- No Problem Car",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "238K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": {
                    "id": "882002934490724"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/867530005839915",
                  "id": "867530005839915",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "25851922641061021",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584970463_25851923014394317_1029103091436931476_n.jpg?stp=dst-jpg_p843x403_tt6&_nc_cat=107&ccb=1-7&_nc_sid=454cf4&_nc_ohc=521hVhD08GQQ7kNvwGm4B4h&_nc_oc=AdlWDtls5ZMfb2Lu4RXVinmCDx0OhrZsXBNIf72Ey9p95oE9cW_cHodoenPAXNaB-JI&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfhrMYaXAM3d9GbdKwb5pmMimduTUBcEMo8gStJG4ow9SA&oe=69222AD2"
                  },
                  "listing_price": {
                    "formatted_amount": "$25,995",
                    "amount_with_offset_in_currency": "2599500",
                    "amount": "25995.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Commack",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Commack, New York",
                        "id": "108861829132462"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2017 Toyota 4Runner Limited Sport Utility 4D",
                  "custom_title": "2017 Toyota 4runner Limited Sport Utility 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "111K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1368547868136336",
                  "id": "1368547868136336",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "906982209161005",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584092504_906982212494338_2728837247275612868_n.jpg?stp=c0.140.843.843a_dst-jpg_p843x403_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=JsJ5noAPWcwQ7kNvwFQdxKG&_nc_oc=Adma_r0leA3kGIMJ_DdvDWRpp3udM6WaANAL0ZrVDYWq6fBoTSkryJCyQ3RCa-jOBXI&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgbOPqtVJ-p96X2oYYcDVgmpdC0DHStc2YMap_EZ3aZhg&oe=69221AEB"
                  },
                  "listing_price": {
                    "formatted_amount": "$22,500",
                    "amount_with_offset_in_currency": "2250000",
                    "amount": "22500.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Wayne",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Wayne, New Jersey",
                        "id": "103723296332578"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "757715671026531",
                  "marketplace_listing_title": "2012 Chevy 4500 AMBULANCE",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [],
                  "origin_group": null,
                  "listing_video": {
                    "id": "2704976029836070"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1368230321380910",
                  "id": "1368230321380910",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "25220664997563604",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/582109599_25220665097563594_8611269911835809655_n.jpg?stp=dst-jpg_p843x403_tt6&_nc_cat=109&ccb=1-7&_nc_sid=454cf4&_nc_ohc=eoUsL4IWogwQ7kNvwGdYP1o&_nc_oc=Adk3MdBoLzAq5B0UfeHZY0X_efXP88UeHuNNAVy8qCMTsgymcPI85urXpOrXVaBuTCU&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfhY1KhyTlD64kSltySH7nE3uKRBCLMW-pUC0lVq7JNknw&oe=6922321D"
                  },
                  "listing_price": {
                    "formatted_amount": "$3,700",
                    "amount_with_offset_in_currency": "370000",
                    "amount": "3700.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Tarrytown",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Tarrytown, New York",
                        "id": "112034005480717"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2011 Honda Accord · EX-L Sedan 4D",
                  "custom_title": "2011 Honda accord EX-L Sedan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "142K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1893330301595003",
                  "id": "1893330301595003",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "707489455284064",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584157806_707489458617397_8672849532565453295_n.jpg?stp=c0.327.843.843a_dst-jpg_p843x403_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=QyIXC6kvujgQ7kNvwHqrb_1&_nc_oc=Admuzx5hkbHAXYn0ci1_GMRwOypItXr8TvPAdRVTWXltG6AAlM_Un9qzYQNmLmHLEK0&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfiqHux0Xt1C75oKZ8XY2X9LV1g2mtjjIxzJc9Pyfz8MUQ&oe=69222A73"
                  },
                  "listing_price": {
                    "formatted_amount": "$550",
                    "amount_with_offset_in_currency": "55000",
                    "amount": "550.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Union",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Union Township",
                        "id": "111806958846634"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "757715671026531",
                  "marketplace_listing_title": "GOOD CHEVY 4L80 4WD with TCASE",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1328453305173915",
                  "id": "1328453305173915",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "2387922124997184",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584950717_2387922151663848_1145697923212460478_n.jpg?stp=c256.0.1536.1536a_dst-jpg_s960x960_tt6&_nc_cat=108&ccb=1-7&_nc_sid=454cf4&_nc_ohc=F9s2S8oRPfoQ7kNvwGh0222&_nc_oc=AdlRZwCpOe7FPGanu9V_1qPYVS90GD97cTdc4nIY_v2KzUuuFxSElIG0RGGT620q1iU&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afj3alNT7V3ZkRhCFLhjpznZfguKLYPmseZkh8nbx-YHig&oe=69221735"
                  },
                  "listing_price": {
                    "formatted_amount": "$3,500",
                    "amount_with_offset_in_currency": "350000",
                    "amount": "3500.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Brentwood",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Brentwood, New York",
                        "id": "103758852995949"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2003 GMC Sierra (Classic) 1500 Extended Cab · SLE Pickup 4D 8 ft",
                  "custom_title": "2003 GMC sierra (classic) 1500 extended cab SLE Pickup 4D 8 ft",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "200K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/4174622952750638",
                  "id": "4174622952750638",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "24848046458212187",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584568019_24848046484878851_494292095473573687_n.jpg?stp=c0.140.843.843a_dst-jpg_p843x403_tt6&_nc_cat=109&ccb=1-7&_nc_sid=92e707&_nc_ohc=P18_Y6IMXP0Q7kNvwH2wt7G&_nc_oc=Adl6zphOUq3XIA6zJfYeLh5sGUYnJcntscPE_0NkGwh0algMZjdgTqdNkszWNWVLdJI&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfjxUOCAPpiw1kNAX3m7ZIT2VXtHqGvvvx9bBX2W9IFPWg&oe=69223E5A"
                  },
                  "listing_price": {
                    "formatted_amount": "$1,600",
                    "amount_with_offset_in_currency": "160000",
                    "amount": "1600.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "West Islip",
                      "state": "NY",
                      "city_page": {
                        "display_name": "West Islip, New York",
                        "id": "112145152134747"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "895487550471874",
                  "marketplace_listing_title": "2021 SSR SR 150",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1898045964463184",
                  "id": "1898045964463184",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "26253128224287116",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584483204_26253128254287113_2516463412297972469_n.jpg?stp=c0.10.575.575a_dst-jpg_s575x575_tt6&_nc_cat=105&ccb=1-7&_nc_sid=454cf4&_nc_ohc=eIoIDwE_9W4Q7kNvwEyFNVr&_nc_oc=AdnQwEJCQZYp_Y2kk_qn5JLlgi75MFnccvewzbqX1Tr0U9R8nmEIsxc68XDbqyw_LYQ&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfiRQoSutGHFEtVBRf2I5Ig_LK0xIFIzLRspeHIniMpkOA&oe=692213A4"
                  },
                  "listing_price": {
                    "formatted_amount": "$16,000",
                    "amount_with_offset_in_currency": "1600000",
                    "amount": "16000.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "New York",
                      "state": "NY",
                      "city_page": {
                        "display_name": "New York, New York",
                        "id": "108424279189115"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2022 Toyota Camry · SE Sedan 4D",
                  "custom_title": "2022 Toyota camry SE Sedan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "107K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1182250790501542",
                  "id": "1182250790501542",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "855269330547361",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/585961751_855269360547358_2959524707526670999_n.jpg?stp=c0.491.843.843a_dst-jpg_p843x403_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=sNL-C8bO6qMQ7kNvwGw86h4&_nc_oc=Adm-MaI2QJ-OCJO4gjjjKZCLaEbzX8fWoOQH2UHOXevt0zRRMgParb6hwbNpeOGGne4&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgRbMgWhJXmZOytnwZCW77NdwMnR2n8LyeVunEHgss0cw&oe=6922271D"
                  },
                  "listing_price": {
                    "formatted_amount": "$100",
                    "amount_with_offset_in_currency": "10000",
                    "amount": "100.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "West Babylon",
                      "state": "NY",
                      "city_page": {
                        "display_name": "West Babylon, New York",
                        "id": "112391368776148"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "1569171756675761",
                  "marketplace_listing_title": "Vintage wooden boat",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/871320718899887",
                  "id": "871320718899887",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "2435098580218349",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/583318346_2435098590218348_5659066257786247319_n.jpg?stp=c125.0.750.750a_dst-jpg_s750x750_tt6&_nc_cat=103&ccb=1-7&_nc_sid=454cf4&_nc_ohc=J5V369Rhwj0Q7kNvwGFL8S8&_nc_oc=Adm5HR_KscBUS6Fog6z38jWTKMD1pU9DOygYxHphGDQ70C9tAGie6CY8OblD6i2glCQ&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfhQLtmChTVPMXxyKr6DR-ZJg44pC2vPbCwdMIX--7swMg&oe=692231B5"
                  },
                  "listing_price": {
                    "formatted_amount": "$1,850",
                    "amount_with_offset_in_currency": "185000",
                    "amount": "1850.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Brentwood",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Brentwood, New York",
                        "id": "103758852995949"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "Trailer 6x10",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": ""
                    }
                  ],
                  "origin_group": null,
                  "listing_video": {
                    "id": "1222333893070066"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/865577286155270",
                  "id": "865577286155270",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "823071030468300",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/580521280_823071047134965_2680356417901947543_n.jpg?stp=c0.140.843.843a_dst-jpg_p843x403_tt6&_nc_cat=110&ccb=1-7&_nc_sid=92e707&_nc_ohc=JlDYwN1svI4Q7kNvwFuui5X&_nc_oc=Adn1jbChw3jdkCzqxiao_t29EqVCnsbuuJEK86BjwCwA_yQybF7xduaPBxKZf8Aixxo&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgEPmU-kNImI_j3DxnvuLXLFB7vP2AzHiaCuuQoIqIH_g&oe=6922167C"
                  },
                  "listing_price": {
                    "formatted_amount": "$4,300",
                    "amount_with_offset_in_currency": "430000",
                    "amount": "4300.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Paterson",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "Paterson, New Jersey",
                        "id": "108528445838668"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2009 Honda Accord · EX-L w/Navigation Sedan 4D",
                  "custom_title": "2009 Honda accord EX-L w/Navigation Sedan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "175K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/25361660930189457",
                  "id": "25361660930189457",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "10163439046180791",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/585229156_10163439046360791_4936744965458722632_n.jpg?stp=c256.0.1536.1536a_dst-jpg_s960x960_tt6&_nc_cat=103&ccb=1-7&_nc_sid=454cf4&_nc_ohc=_zEjZ_bbd3QQ7kNvwGWsLfo&_nc_oc=AdmxTMZoVii2sHe1t7hYlOnFmP0wa4mpZBrXvSQCxVTX408_oxjTq0e-8InvqehhM4U&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afi_F4Xm88-UFqCZ0VZpKQgiJX1LFgKEXJmvYaUnPTtDZg&oe=69223182"
                  },
                  "listing_price": {
                    "formatted_amount": "$2,900",
                    "amount_with_offset_in_currency": "290000",
                    "amount": "2900.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Huntington Station",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Dix Hills, New York",
                        "id": "105915499439993"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "1974 Chevrolet Corvette · Stingray Coupe 2D",
                  "custom_title": "1974 Chevrolet corvette Stingray Coupe 2D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "9.2K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1498724724753712",
                  "id": "1498724724753712",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1140847568131943",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/585387094_1140847578131942_7768060981160937738_n.jpg?stp=c160.0.960.960a_dst-jpg_p960x960_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=cq-HBkm8aSIQ7kNvwG-sb1E&_nc_oc=AdlAGuF7PUEHZ8Eef41gSxNzDX6Uiz_wEI8iAgr1ti3bw8RsfufSzllbXi6xvVDD2yU&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgD2Re-yfXBnVL6xHehkgMhOf8sg5KMPuHgJPwl1rNl1w&oe=692238DD"
                  },
                  "listing_price": {
                    "formatted_amount": "$29,995",
                    "amount_with_offset_in_currency": "2999500",
                    "amount": "29995.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Huntington Station",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Huntington Station, New York",
                        "id": "107551075934460"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2018 Land Rover Range Rover Sport",
                  "custom_title": "2018 Land Rover range rover sport",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "53K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": {
                    "id": "3175829199242595"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1381813860129845",
                  "id": "1381813860129845",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "5077943405763222",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584424272_5077943452429884_5689544953943557330_n.jpg?stp=c0.169.1537.1537a_dst-jpg_s960x960_tt6&_nc_cat=102&ccb=1-7&_nc_sid=454cf4&_nc_ohc=lbkybwZJaEAQ7kNvwFg4dx9&_nc_oc=Admtpis_fGYxeYTDnaPWUMweXg5HzrD40obaLNJM-uyMIB4b-8DN5HM_Lx_M2Dirpy4&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afj2LAmfKCcAQmy2c4Uv6N7odIDJsjIBa6gTrgVyLrEJLQ&oe=69221893"
                  },
                  "listing_price": {
                    "formatted_amount": "$4,000",
                    "amount_with_offset_in_currency": "400000",
                    "amount": "4000.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "North Bergen",
                      "state": "NJ",
                      "city_page": {
                        "display_name": "North Bergen, New Jersey",
                        "id": "111685032180118"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2009 MINI Cooper S",
                  "custom_title": "2009 MINI cooper s",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "89K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/1343646660890914",
                  "id": "1343646660890914",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1820782465231591",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584311032_1820782471898257_8225415539566953585_n.jpg?stp=c160.0.960.960a_dst-jpg_p960x960_tt6&_nc_cat=110&ccb=1-7&_nc_sid=92e707&_nc_ohc=kV25VWEg72cQ7kNvwHrS30E&_nc_oc=AdlHCpm4FOiaN68Q9wGM3uWTWq1n2eRyjyz7p58le5LDygDHSKKWgy38A7N5kXw6LDQ&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfiQ-QZC6TTQ-iPqM25FVhEUHPmXPp8A5sNwP8UCl2p2ZA&oe=69222900"
                  },
                  "listing_price": {
                    "formatted_amount": "$12,999",
                    "amount_with_offset_in_currency": "1299900",
                    "amount": "12999.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "North Babylon",
                      "state": "NY",
                      "city_page": {
                        "display_name": "North Babylon, New York",
                        "id": "108890572468810"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2013 Ford Mustang V6 Convertible 2D",
                  "custom_title": "2013 Ford mustang V6 Convertible 2D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "178K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/803052369235201",
                  "id": "803052369235201",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1352655419092508",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/582315343_1352655425759174_7548617602766916388_n.jpg?stp=c0.0.842.842a_dst-jpg_p843x403_tt6&_nc_cat=110&ccb=1-7&_nc_sid=92e707&_nc_ohc=zBkOYQ0MOUkQ7kNvwE_IwJb&_nc_oc=AdlURXbovMDzQkuIU-d21USgQCfDdnEBCn93qHsXf0VQ0Halpil4ySwP5Ke798JTvNE&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfgCjfi4_WSBmq8PuimSIqgZYol5tm-yLY2wTubBNQ01KQ&oe=6922192C"
                  },
                  "listing_price": {
                    "formatted_amount": "$7,995",
                    "amount_with_offset_in_currency": "799500",
                    "amount": "7995.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Massapequa",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Massapequa, New York",
                        "id": "113166255363565"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2004 Ford 2004 Ford Explorer XLT 4 WD",
                  "custom_title": "2004 Ford 2004 ford explorer xlt 4 wd XLT",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "68K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/2311022869322308",
                  "id": "2311022869322308",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "5226509617575031",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/584969771_5226509654241694_5573607157519889893_n.jpg?stp=dst-jpg_p843x403_tt6&_nc_cat=104&ccb=1-7&_nc_sid=454cf4&_nc_ohc=4scVhcRT9cIQ7kNvwFBXlDs&_nc_oc=Adm04K2QDVnLBe6s2PduD5l78mDLohtbiTPqm8-aGTdaKwniNfSqPxCRQNa7R5Bzx5M&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_Afjyh2xWUi5eASWQAM9yuXRJDq0IXBxLxWu3xTZEQNX3Lw&oe=69221DD8"
                  },
                  "listing_price": {
                    "formatted_amount": "$24,000",
                    "amount_with_offset_in_currency": "2400000",
                    "amount": "24000.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Scarsdale",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Ardsley, New York",
                        "id": "113457785331413"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "807311116002614",
                  "marketplace_listing_title": "2012 Tesla Model S · P85 Sedan 4D",
                  "custom_title": "2012 Tesla model s P85 Sedan 4D",
                  "custom_sub_titles_with_rendering_flags": [
                    {
                      "subtitle": "76K miles"
                    }
                  ],
                  "origin_group": null,
                  "listing_video": {
                    "id": "2652398245108837"
                  },
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                },
                {
                  "listingUrl": "https://www.facebook.com/marketplace/item/845176697898448",
                  "id": "845176697898448",
                  "primary_listing_photo": {
                    "__typename": "ProductImage",
                    "id": "1936121276965714",
                    "photo_image_url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/584361033_1936121323632376_4881663101461559273_n.jpg?stp=c0.140.843.843a_dst-jpg_p843x403_tt6&_nc_cat=103&ccb=1-7&_nc_sid=92e707&_nc_ohc=zVI8Su8Zq9EQ7kNvwHUNXGz&_nc_oc=AdnZDZ_JaeYD8i6tYmf0XjyyWHzBQcyRSADny3Z27pPZPEEeOSLvr9_QHhzJJV1dJ-A&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=JC-3aMVTfO-ill4MgS2ZcA&oh=00_AfhWznej5XVZtDuNQa1BHJ_Qz7QI5xAt7oNKcDVcRWz9xg&oe=69220F31"
                  },
                  "listing_price": {
                    "formatted_amount": "$40",
                    "amount_with_offset_in_currency": "4000",
                    "amount": "40.00"
                  },
                  "strikethrough_price": null,
                  "comparable_price": null,
                  "comparable_price_type": null,
                  "location": {
                    "reverse_geocode": {
                      "city": "Farmingdale",
                      "state": "NY",
                      "city_page": {
                        "display_name": "Farmingdale, New York",
                        "id": "104058542963315"
                      }
                    }
                  },
                  "is_hidden": false,
                  "is_live": true,
                  "is_pending": false,
                  "is_sold": false,
                  "is_viewer_seller": false,
                  "min_listing_price": null,
                  "max_listing_price": null,
                  "marketplace_listing_category_id": "895487550471874",
                  "marketplace_listing_title": "Next generation camper",
                  "custom_title": null,
                  "custom_sub_titles_with_rendering_flags": [],
                  "origin_group": null,
                  "listing_video": null,
                  "parent_listing": null,
                  "marketplace_listing_seller": {
                    "__typename": "User",
                    "name": null,
                    "id": null
                  },
                  "delivery_types": [
                    "IN_PERSON"
                  ]
                }
              ]
            }
          }
        }
      }
    }
  ]
}

Pricing

$0.01per successful request

Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.

Related endpoints

Start using this endpoint

Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.

Facebook APIFacebook data APIget marketplace vehicles search results APIAI agents data APIFacebook APIFacebook data APIFacebook for AI agents