Quickstart
This guide walks you from zero to your first successful API call. You'll generate an API key and retrieve your feed library in just a few steps.
You need a Repurai account and at least one feed in your dashboard before making your first request. Generate your API key under Settings → API Keys.
Authentication
Every request needs your API key in the Authorization header.
Authorization: Bearer rep_your_api_key_here
Making your first request
Retrieve all your feeds grouped by category:
GET/api/v1/feeds
curl https://repurai.com/api/v1/feeds \
-H "Authorization: Bearer rep_your_api_key"
A successful response returns a list of your categories, each containing the feeds inside it:
[
{
"id": "d4e5f6a7-b8c9-4d0e-a1b2-3c4d5e6f7a8b",
"name": "Technology",
"newItemsCount": 4,
"feeds": [
{
"id": "a1b2c3d4-e5f6-4a7b-8c9d-e0f1a2b3c4d5",
"lastFetchedAt": "2026-05-18T10:00:00.000Z",
"newItemsCount": 4,
"metadata": {
"title": "TechCrunch",
"userlink": "https://techcrunch.com",
"favicon": "https://techcrunch.com/favicon.ico"
}
}
]
}
]