curl --request GET \
--url https://api.novu.co/v1/feeds \
--header 'Authorization: ApiKey <NOVU_API_KEY>'
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.feeds.get();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getFeeds()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.feeds()
from novu.api import FeedApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = FeedApi(url, api_key).list(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.feeds();
}
}
{
"data": [
{
"_id": "string",
"name": "string",
"identifier": "string",
"_environmentId": "string",
"_organizationId": "string"
}
]
}
Feeds
Get feeds
GET
/
v1
/
feeds
curl --request GET \
--url https://api.novu.co/v1/feeds \
--header 'Authorization: ApiKey <NOVU_API_KEY>'
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.feeds.get();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getFeeds()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.feeds()
from novu.api import FeedApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = FeedApi(url, api_key).list(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.feeds();
}
}
{
"data": [
{
"_id": "string",
"name": "string",
"identifier": "string",
"_environmentId": "string",
"_organizationId": "string"
}
]
}
Enter your API key in the
Authorization field like the example shown below:E.g ApiKey 18d2e625f05d80ecurl --request GET \
--url https://api.novu.co/v1/feeds \
--header 'Authorization: ApiKey <NOVU_API_KEY>'
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.feeds.get();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getFeeds()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.feeds()
from novu.api import FeedApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = FeedApi(url, api_key).list(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.feeds();
}
}
{
"data": [
{
"_id": "string",
"name": "string",
"identifier": "string",
"_environmentId": "string",
"_organizationId": "string"
}
]
}
Was this page helpful?
⌘I