/api/v1/catalog/itemsPublicList Items Dataset
Returns the full items dataset in the v1 envelope.
cURL
curl 'https://createflow.app/api/v1/catalog/items'
JavaScript
const res = await fetch('https://createflow.app/api/v1/catalog/items');
const json = await res.json();
console.log(json.data.length);Python
import requests
res = requests.get('https://createflow.app/api/v1/catalog/items')
print(len(res.json()['data']))Response Preview
{
"status": "ok",
"data": [
{ "id": "minecraft:iron_ingot", "label": "Iron Ingot" }
],
"meta": { "version": "v1", "generatedAt": "..." }
}