post https://api.moralis-streams.com/history/replay//
Replay a specific history.
Log in to see full request history
Response
Replay a specific history.
xxxxxxxxxx
16import Moralis from "moralis";
​
Moralis.start({
apiKey: 'YOUR_API_KEY',
// ...and any other configuration
});
​
const id = "id-1";
const streamId = "stream-1";
​
const { result } = await Moralis.Streams.retry({
id,
streamId,
});
​
console.log(result);
Try It!
to start a request and see the response here!