Read every directory record
GET /directories.json
Returns the complete public directory catalog.
View the live JSONFree public data
Read software directory records and current product leaderboard data. Public read endpoints use HTTPS and need no API key.
Step 1
This request returns the public directory catalog as JSON. The response includes collection links, record counts, and structured directory records.
curl https://mydentify.com/directories.json
Step 2
Fetch the same catalog from a browser or server. Directory JSON endpoints allow browser requests from any origin.
const response = await fetch(
"https://mydentify.com/directories.json"
);
const catalog = await response.json();
console.log(catalog.totalRecords);
console.log(catalog.records);
Public read endpoints
GET /directories.json
Returns the complete public directory catalog.
View the live JSONGET /api/directories/{slug}/json
Returns structured data for one directory page or collection.
Browse directory pagesGET /arenas.json
Returns current activity and completed product results.
View leaderboard JSONVersion 1.3.1
Use the production OpenAPI file for every route, parameter, response, and schema. The hosted guide includes a browsable reference.