Mydentify Public API Directories API

The Directories API from Mydentify Public API — 2 operation(s) for directories.

Documentation

Specifications

Other Resources

🔗
Examples
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/examples/_index.yml
🔗
DeveloperPortal
https://mydentify.com/developers
🔗
LLMsTxt
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/llms/mydentify-public-api-llms.txt
🔗
ToolCrosswalk
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/mcp/mydentify-public-api-tool-crosswalk.yml
🔗
Conventions
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/conventions/mydentify-public-api-conventions.yml
🔗
Idempotency
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/conventions/mydentify-public-api-conventions.yml
🔗
ErrorCatalog
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/errors/mydentify-public-api-problem-types.yml
🔗
DataModel
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/data-model/mydentify-public-api-data-model.yml
🔗
Lifecycle
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/lifecycle/mydentify-public-api-lifecycle.yml
🔗
Sandbox
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/sandbox/mydentify-public-api-sandbox.yml
🔗
Conformance
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/conformance/mydentify-public-api-conformance.yml
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/mydentify-public-api/refs/heads/main/apis.yml

OpenAPI Specification

mydentify-public-api-directories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mydentify Public Directories API
  version: 1.4.0
  description: Read product directories and weekly leaderboard data or create a product. Public endpoints use HTTPS and need no API key. Directory JSON endpoints allow browser requests from any origin.
servers:
- url: https://mydentify.com
security: []
tags:
- name: Directories
paths:
  /api/directories/{slug}/json:
    get:
      summary: Get structured data for a directory record, collection, or facet index
      parameters:
      - $ref: '#/components/parameters/DirectorySlug'
      responses:
        '200':
          description: Page-specific directory payload
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Directory page not found
      tags:
      - Directories
  /directories/{slug}/llms.txt:
    get:
      summary: Get the concise Markdown representation of a directory record, collection, or facet index
      parameters:
      - $ref: '#/components/parameters/DirectorySlug'
      responses:
        '200':
          description: LLM-readable directory page
          content:
            text/markdown:
              schema:
                type: string
        '404':
          description: Directory page not found
      tags:
      - Directories
components:
  parameters:
    DirectorySlug:
      in: path
      name: slug
      required: true
      schema:
        type: string
externalDocs:
  description: Use the Mydentify public API
  url: https://mydentify.com/developers
x-cors:
  description: Directory JSON endpoints allow browser requests from any origin.
  allowOrigins:
  - '*'