To avoid exceeding your Google Analytics quota when fetching page views more than one URL's
Batch Requests: Combine URLs into a single request using an or condition, if feasible.
Limit Concurrency: Control the number of simultaneous requests to prevent quota overages.
Implement Caching: Store results temporarily to reduce the frequency of API calls.
Reduce Time Range: Query shorter periods.
Error Handling: Catch quota limit errors and implement a retry strategy.
I hope this will be helpful.