Hi,I am trying to get the of my customers using Shopify Customers API but I'm not able getting data

this is the code that I am using but I am not getting a Json Response

const getCustomers = async () => {
    const customersData = await fetch("/login?shop=ShopName.myshopify.com/admin/api/2022-04/customers.json")
    setCustomers(await customersData)
    console.log(customers)
  }
  useEffect(() => {
    getCustomers();
  }, [])