Free public data

Use Mydentify’s Public API

Read software directory records and current product leaderboard data. Public read endpoints use HTTPS and need no API key.

Step 1

Get directory data in seconds

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

Use the data you need

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

Choose the right data source

Read every directory record

GET /directories.json

Returns the complete public directory catalog.

View the live JSON

Read one directory page

GET /api/directories/{slug}/json

Returns structured data for one directory page or collection.

Browse directory pages

Read the product leaderboard

GET /arenas.json

Returns current activity and completed product results.

View leaderboard JSON

Version 1.3.1

Read the full API reference

Use the production OpenAPI file for every route, parameter, response, and schema. The hosted guide includes a browsable reference.