List Quotes
curl --request GET \
--url https://api.example.com/api/v1/quotesimport requests
url = "https://api.example.com/api/v1/quotes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/quotes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/quotes")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"id": "a1b2c3d4-...",
"quote_text": "If you don't take risks, you can't create a future.",
"anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
"character": { "id": "...", "name": "Monkey D. Luffy", "slug": "monkey-d-luffy", "role": "main" },
"episode": "1",
"language": "en",
"tags": ["motivational", "adventure"],
"created_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"cursor": "eyJpZCI6...",
"has_more": true,
"total": 1420
}
}
Quotes
List Quotes
Retrieve a paginated list of anime quotes with optional filters
GET
/
api
/
v1
/
quotes
List Quotes
curl --request GET \
--url https://api.example.com/api/v1/quotesimport requests
url = "https://api.example.com/api/v1/quotes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/quotes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/quotes")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"id": "a1b2c3d4-...",
"quote_text": "If you don't take risks, you can't create a future.",
"anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
"character": { "id": "...", "name": "Monkey D. Luffy", "slug": "monkey-d-luffy", "role": "main" },
"episode": "1",
"language": "en",
"tags": ["motivational", "adventure"],
"created_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"cursor": "eyJpZCI6...",
"has_more": true,
"total": 1420
}
}
Query Parameters
string
Filter by anime slug (e.g.,
naruto, one-piece)string
Filter by character slug (e.g.,
itachi-uchiha)string
default:"en"
Filter by language code
string
Comma-separated tag filter (e.g.,
motivational,villain)integer
default:"20"
Results per page (max 50)
string
Pagination cursor from previous response
{
"status": "success",
"data": [
{
"id": "a1b2c3d4-...",
"quote_text": "If you don't take risks, you can't create a future.",
"anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
"character": { "id": "...", "name": "Monkey D. Luffy", "slug": "monkey-d-luffy", "role": "main" },
"episode": "1",
"language": "en",
"tags": ["motivational", "adventure"],
"created_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"cursor": "eyJpZCI6...",
"has_more": true,
"total": 1420
}
}