curl https://api2.ecomailapp.cz/feeds \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api2.ecomailapp.cz/feeds');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'key: YOUR_API_KEY',
'Content-Type: application/json',
]);
$response = curl_exec($ch);
curl_close($ch);
{
"feeds": [
{
"id": 1,
"type": "heureka",
"url": "https://www.example.com/feed.xml",
"products_count": 250,
"error": null,
"created_at": "2026-08-01 10:00:00",
"updated_at": "2026-08-31 06:30:00"
}
]
}
Feeds
List all feeds
Retrieve all product feeds in your account.
GET
/
feeds
curl https://api2.ecomailapp.cz/feeds \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api2.ecomailapp.cz/feeds');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'key: YOUR_API_KEY',
'Content-Type: application/json',
]);
$response = curl_exec($ch);
curl_close($ch);
{
"feeds": [
{
"id": 1,
"type": "heureka",
"url": "https://www.example.com/feed.xml",
"products_count": 250,
"error": null,
"created_at": "2026-08-01 10:00:00",
"updated_at": "2026-08-31 06:30:00"
}
]
}
Returns the product feeds of your account. Use the
id values as feed_id for the refresh endpoint. Data feeds are not included.
array
List of product feeds.
Show Feed object
Show Feed object
integer
Feed ID.
string
Feed format, for example
heureka, google, or zbozi.string
Source URL of the feed.
integer | null
Number of products loaded from the feed.
string | null
Error from the last feed processing, or
null when the feed is healthy.string
When the feed was created, formatted as
Y-m-d H:i:s.string
When the feed was last updated, formatted as
Y-m-d H:i:s.curl https://api2.ecomailapp.cz/feeds \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json"
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api2.ecomailapp.cz/feeds');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'key: YOUR_API_KEY',
'Content-Type: application/json',
]);
$response = curl_exec($ch);
curl_close($ch);
{
"feeds": [
{
"id": 1,
"type": "heureka",
"url": "https://www.example.com/feed.xml",
"products_count": 250,
"error": null,
"created_at": "2026-08-01 10:00:00",
"updated_at": "2026-08-31 06:30:00"
}
]
}