. . . . .. .. .: . . .. . . .:.. .. .. .. . .. .+... . .. .::..: .. ... ..............:.+. . .. . .:..::::---=. ..:---:. . .=--=-:.-::..=:-:. . .. ..... . . .-. . .:==-----+=-:. :--:.=.-..... . .-===::---:-:::::. ..::-:--:. . .:.=.::--.. . ..... ..:-=== ===.-:: .::::..:: .:.... ..:==-=+=+=-=-=::.+.:.... .:-:::.. ...+... .:.:::-=++::.. .=.. . .. ..-...:..::+====.++=-:+::.... .::::---=::.. ..:::-=+==-+X+===-:.:-+=--::=:: ..::.:. .:..:+::=:::--=+XX+---:...::.... .. ..:.+....:--.::-:---=+X++++==-:::::......::==++--:..:==--=-=--==+X==++=---+-=+==--::. .:::: :-::::--+=--=+XXXXX++=---:=-:.:....=.... .. ..::::-=-::=++==+XX.XX+X+----==.--::.:-=+X+X+===-=X+===----== XXXX++++==++++++==-:....:::.==-=--==XXX=XXXX-X:++==-++=:::--:::::....= ...:.-::-====-.-=++:+XXXXXX+==-==++=----- =XXXXXXXXXXXXX++=---:==+X.XX.+XXXXXX+X+XX++++-:.::--=X++:X =XXXXX++.XX++X++X+++--::--:-::::.:. .-..::.-=====-=-=++:+XXXXXX+==-==++=----- =XXXXXXXXXXXXX++=---:==+X.XX.+XXXXXX+X+XX++++-:.::--=X++:X =XXXXX++.XX++X++X+++--::--:-::::.:.

Quickstart

Get started and make your first API request.
View
epuraı
epuraı
K
  • Introduction
  • Quickstart
  • SDKs
  • Guides

    • Introduction
    • Quickstart
    • Authentication
    • Pagination
    • Errors
  • API Reference

    • Feeds
    • Feed Posts
    • Categories
    • AI
  • Sign in

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"
        }
      }
    ]
  }
]

What's next?

  • View today's posts across all feeds
  • Search your feed content
  • Generate an AI summary for a post
  • Review error codes and handling
PreviousIntroduction
NextAuthentication

© Copyright 2026. All rights reserved.