GET /records
Retrieve a collection of creative records from our experimental catalog, allowing users to explore our diverse portfolio of sound poetry and visual art pieces with detailed metadata including creation techniques, thematic elements, and technical specifications for each work.
curl -X GET "http://doudou-records.swagger.io/v1/records?limit=42" \
-H "Content-Type: application/json"
import requests
import json
url = "http://doudou-records.swagger.io/v1/records?limit=42"
headers = {
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("http://doudou-records.swagger.io/v1/records?limit=42", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
)
func main() {
req, err := http.NewRequest("GET", "http://doudou-records.swagger.io/v1/records?limit=42", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('http://doudou-records.swagger.io/v1/records?limit=42')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
response = http.request(request)
puts response.body
["null"]
{}
/records
Controls the maximum number of records returned per request, with a maximum limit of 100 to ensure optimal performance and user experience.
Request Preview
Response
Response will appear here after sending the request
Query Parameters
Controls the maximum number of records returned per request, with a maximum limit of 100 to ensure optimal performance and user experience.
Responses
Provides a curated list of our creative records with comprehensive information about each piece, including audio samples, visual previews, and detailed descriptions of the artistic process and inspiration behind each work.
Last updated today