I’ve created a Laravel package which lets you record a real HTTP request and it will automatically create a Fixture with faker data similar to Laravel factories. It works almost the same way as Charlie mentioned in his comment.
Http::fake(["https://api.stripe.com/v1/*" => Http::response(
(new StripeFixture())->toJson(), 200),
]);
Check it out here