Pendo Feedback API
pendo · Commerce
## Who is this for? This documentation is for developers creating their own integration with [Feedback's](https://www.pendo.io/product/feedback/) API. If you are doing a standard integration, there's a really easy [Javascript integration](https://help.receptive.io/hc/en-us/articles/209221969-How-to-integrate-Receptive-with-your-app) that you should know about before you go to the effort of building your own integration. ## Authentication API calls generally need to be authenticated. Generate
Authentication
Sample Requests
Query accounts
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts?limit=10&start=1&order_by=churned&order_dir=asc"
import requests
params = {
"limit": "10",
"start": "1",
"order_by": "churned",
"order_dir": "asc"
}
response = requests.get(
"https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts');
url.searchParams.set('limit', '10');
url.searchParams.set('start', '1');
url.searchParams.set('order_by', 'churned');
url.searchParams.set('order_dir', 'asc');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts")
q := baseURL.Query()
q.Set("limit", "10")
q.Set("start", "1")
q.Set("order_by", "churned")
q.Set("order_dir", "asc")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts")
uri.query = URI.encode_www_form({
"limit" => "10",
"start" => "1",
"order_by" => "churned",
"order_dir" => "asc"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/pendo.io/1.0.0/accounts?" . http_build_query([
"limit" => "10",
"start" => "1",
"order_by" => "churned",
"order_dir" => "asc"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));get a list of Comment records
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments?case_id=1"
import requests
params = {
"case_id": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments');
url.searchParams.set('case_id', '1');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments")
q := baseURL.Query()
q.Set("case_id", "1")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments")
uri.query = URI.encode_www_form({
"case_id" => "1"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/pendo.io/1.0.0/comments?" . http_build_query([
"case_id" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Query features
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/pendo.io/1.0.0/features?tags=example&limit=10&start=1&order_by=title&products=example&order_dir=asc&wanted_by=1&is_private=true"
import requests
params = {
"tags": "example",
"limit": "10",
"start": "1",
"order_by": "title",
"products": "example",
"order_dir": "asc",
"wanted_by": "1",
"is_private": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/pendo.io/1.0.0/features",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/pendo.io/1.0.0/features');
url.searchParams.set('tags', 'example');
url.searchParams.set('limit', '10');
url.searchParams.set('start', '1');
url.searchParams.set('order_by', 'title');
url.searchParams.set('products', 'example');
url.searchParams.set('order_dir', 'asc');
url.searchParams.set('wanted_by', '1');
url.searchParams.set('is_private', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/pendo.io/1.0.0/features")
q := baseURL.Query()
q.Set("tags", "example")
q.Set("limit", "10")
q.Set("start", "1")
q.Set("order_by", "title")
q.Set("products", "example")
q.Set("order_dir", "asc")
q.Set("wanted_by", "1")
q.Set("is_private", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/pendo.io/1.0.0/features")
uri.query = URI.encode_www_form({
"tags" => "example",
"limit" => "10",
"start" => "1",
"order_by" => "title",
"products" => "example",
"order_dir" => "asc",
"wanted_by" => "1",
"is_private" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/pendo.io/1.0.0/features?" . http_build_query([
"tags" => "example",
"limit" => "10",
"start" => "1",
"order_by" => "title",
"products" => "example",
"order_dir" => "asc",
"wanted_by" => "1",
"is_private" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Pendo Feedback API?
Pendo Feedback API is a Commerce API. Developers commonly use commerce APIs for:
- syncing product catalogues and inventory levels
- building price comparison and deal-finder tools
- processing orders and tracking shipments
- managing customer wishlists and reviews
- automating abandoned-cart and promotional emails
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Pendo Feedback API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?