/api/v1/searchSearch feeds by URL or domain
Looks up feeds discovered for a given page or domain. Use this when you have a website and want to find its RSS feeds.
Query parameters
| Name | Type | Default | Description |
|---|---|---|---|
| urlrequired | string | – | A site URL or bare domain (e.g. prototypr.io). |
| page | integer | 1 | Page number for paginated results. |
| per_page | integer | 10 | Items per page (max 50). |
Try it
GET /api/v1/search?url=prototypr.io&page=1&per_page=10›Example response shape
{
"feeds": [
{
"url": "https://blog.prototypr.io/feed",
"title": "Prototypr - Medium",
"site_url": "https://blog.prototypr.io",
"favicon": "https://prototypr.io/icon.ico",
"last_updated": "2025-04-24T20:50:10+00:00",
"feed_type": "rss20"
}
],
"meta": { "total": 1, "page": 1, "per_page": 10 }
}