# PlatPhorm Dictionary - Full LLM Context > The open, AI-first dictionary for the new internet. ## About PlatPhorm Dictionary is a community-driven, AI-moderated dictionary for modern internet terminology. It's part of the PlatPhorm News Network and provides definitions in 10 languages. ## Network PlatPhorm News Network consists of interconnected services: - **Dictionary** (https://dictionary.platphormnews.com): This service - definitions for the new internet - **Docs** (https://docs.platphormnews.com): Documentation hub - **Base** (https://base.platphormnews.com): Main platform - **Trace** (https://trace.platphormnews.com): Observability and tracing - **MCP** (https://mcp.platphormnews.com): Model Context Protocol hub - **Graph** (https://platphormnews.com/api/network/graph): Network relationship graph ## API Reference ### List Terms ``` GET /api/v1/terms?page=1&limit=20&locale=en&sort=recent ``` Parameters: - page: Page number (default: 1) - limit: Results per page (max: 100, default: 20) - locale: Language code (default: en) - sort: recent | popular | alphabetical ### Get Term ``` GET /api/v1/terms/{slug}?locale=en ``` ### Search ``` GET /api/v1/search?q={query}&locale=en&page=1&limit=20 ``` Supports fuzzy matching using PostgreSQL pg_trgm. ### Submit Definition ``` POST /api/v1/terms Content-Type: application/json { "term": "string (required)", "definition": "string (required)", "author_handle": "string (required)", "example_usage": "string (optional)", "locale": "string (default: en)", "category": "string (optional)", "tags": ["string"] (optional) } ``` ### Vote ``` POST /api/v1/definitions/{id}/vote Content-Type: application/json { "voteType": "up" | "down" | null } ``` ## Supported Locales - en: English - es: Spanish (Español) - fr: French (Français) - de: German (Deutsch) - ja: Japanese (日本語) - zh: Chinese (中文) - ar: Arabic (العربية) - RTL - pt: Portuguese (Português) - ko: Korean (한국어) - hi: Hindi (हिन्दी) ## AI Moderation All submissions are reviewed by AI before publication: - Confidence > 0.85: Auto-approved - Confidence 0.5-0.85: Escalated for human review - Confidence < 0.5: Auto-rejected ## Terms Dictionary The following are current terms in the dictionary: ### Vibe Check [vahyb chek] (noun) An assessment of the general mood, atmosphere, or emotional state of a person, group, or situation. Often used to quickly gauge whether everything is okay or if something feels off. Example: "Hey, doing a quick vibe check - everyone feeling good about the project deadline?" ### test test test test test test Example: "test" ### SQL cmdshell a cmdlet that should not exist on the SQL server Example: "typically used in discussions with an app developer or sql guy" ## Integration To integrate with PlatPhorm Dictionary: 1. Use the REST API for programmatic access 2. Subscribe to RSS/Atom feeds for updates 3. Use the OpenAPI spec at /api/docs for client generation 4. Contribute definitions via POST /api/v1/terms ## License All content is available under the Open Database License (ODbL). --- Generated: 2026-04-11T15:36:39.239Z Version: 1.0.0