7 endpoints for URL metadata extraction and link previews via Microlink (title, description, images, screenshots), profanity detection and content filtering via PurgoMalum, and random advice from the Advice Slip API. Great for content moderation, social sharing previews, and chatbots.
Base URL: https://nordapi.ee/api/v1
GET /link/preview
Extract metadata from any URL: title, description, author, publisher, language, images, and logos. Perfect for building link preview cards like those in Slack, Twitter, or Discord.
url
required
curl "https://nordapi.ee/api/v1/link/preview?url=https://github.com"
GET /link/screenshot
Extract metadata from a URL plus capture a screenshot image. Returns the same data as link preview with an additional screenshot URL.
url
required
curl "https://nordapi.ee/api/v1/link/screenshot?url=https://github.com"
GET /profanity/filter
Filter profanity from text, replacing bad words with asterisks or a custom replacement. Supports adding custom words to filter.
text
required
add
optional
fill_char
optional
fill_text
optional
curl "https://nordapi.ee/api/v1/profanity/filter?text=hello+world"
GET /profanity/check
Check if text contains profanity. Returns true or false.
text
required
curl "https://nordapi.ee/api/v1/profanity/check?text=hello+world"
GET /advice/random
Get a random piece of advice. Great for chatbots, daily widgets, and inspiration apps.
curl https://nordapi.ee/api/v1/advice/random
GET /advice/search
Search for advice containing specific keywords.
q
required
curl "https://nordapi.ee/api/v1/advice/search?q=love"
GET /advice/:id
Get a specific piece of advice by its ID.
curl https://nordapi.ee/api/v1/advice/42