Public information. Simple access.
A read-only JSON catalog for discovering published Infinitum Pittsburgh products.
Catalog API v1
No API key is required. These endpoints return the published snapshot used to build this website. Changes appear after a new site deployment; the API is not a live feed from product accounts.
GET /api/v1/productsGET /api/v1/products/infiniviewGET /api/v1/products/featuredGET /api/v1/products/recentGET /api/v1/categoriesGET /api/v1/releasesMake a request
const response = await fetch('https://pittsburghsoftware.infinitumimagery.com/api/v1/products');
if (!response.ok) throw new Error('Catalog unavailable');
const { data, schemaVersion } = await response.json();Response contract
Responses contain schemaVersion: 1, a build timestamp in generatedAt, and data. The product-detail endpoint returns one object; list endpoints return arrays. Date strings use ISO 8601 UTC.
Unknown paths return HTTP 404. Only GET and HEAD are intended for consumption. There are no public write endpoints, account data, private drafts or internal services in this API. Cache results and handle non-JSON error responses.
Reuse and attribution
You may link to our products and use catalog metadata to identify them with attribution to Infinitum Pittsburgh. Logos, product content and software remain the property of their respective owners. See our Terms.