Skip to main content
This guide takes you from an API key to your first memory response.

Prerequisites

Before you begin, you need:
  • A Replay account
  • At least one memory in your account
  • An API key from your account settings in the Replay web app
  • The public API base URL for your environment
1

Get your API key

Open the Replay web app and go to your account settings. Create or copy an API key.Keep this key private. It can read memories from your account.
2

Set local environment variables

Store the API base URL and API key in environment variables.
If your account settings show a different API endpoint, use that endpoint.
3

List your memories

Call GET /v1/memories.
The response is an array of memories owned by your account. Media URL fields are temporary signed URLs that expire 1 hour after the response is created.
4

Fetch one memory

Copy a memory id from the list response and call GET /v1/memories/{memory_id}.

Example response

Next steps