Blog
📝 Blog API
Access public blog posts and announcements.
Retrieve a list of all public blog posts and announcements.
Returns:
Blog post metadata (title, excerpt, category, tags)
Author and publication date
Featured images and read time
Direct links to full content
Responses
200
OK
application/json
404
Not Found
application/json
429
Too Many Requests
application/json
500
Internal Server Error
application/json
get
/blogGET /v1/blog HTTP/1.1
Host: api.twnlabs.com
Accept: */*
[
{
"id": 1,
"slug": "unlocking-digital-identity-from-web2-to-sovereign-infts",
"title": "Unlocking Digital Identity: From Web 2 Sign‑On to Sovereign iNFTs",
"excerpt": "Digital identity is shifting from Big Tech‑controlled SSO to self‑sovereign, interoperable iNFTs anchored on decentralized identifiers and verifiable credentials.",
"category": "Identity",
"tags": [
"SSI",
"DID",
"iNFT",
"Verifiable Credentials",
"Web3"
],
"author": "TWN Labs Team",
"date": "2025-01-20",
"readTime": 10,
"image": "/assets/blog/pictures/DigitalIdentity_Evolution.webp",
"file": "unlocking-digital-identity-from-web2-to-sovereign-infts.json"
}
]Retrieve a specific blog post by its URL-friendly slug identifier.
Returns:
Full blog post metadata
Content file reference
Related tags and category
Path parameters
slugstringRequiredExample:
URL-friendly blog post identifier
unlocking-digital-identity-from-web2-to-sovereign-inftsResponses
200
OK
application/json
404
Not Found
application/json
429
Too Many Requests
application/json
500
Internal Server Error
application/json
get
/blog/{slug}GET /v1/blog/{slug} HTTP/1.1
Host: api.twnlabs.com
Accept: */*
{
"id": 1,
"slug": "unlocking-digital-identity-from-web2-to-sovereign-infts",
"title": "Unlocking Digital Identity: From Web 2 Sign‑On to Sovereign iNFTs",
"excerpt": "Digital identity is shifting from Big Tech‑controlled SSO to self‑sovereign, interoperable iNFTs anchored on decentralized identifiers and verifiable credentials.",
"category": "Identity",
"tags": [
"SSI",
"DID",
"iNFT",
"Verifiable Credentials",
"Web3"
],
"author": "TWN Labs Team",
"date": "2025-01-20",
"readTime": 10,
"image": "/assets/blog/pictures/DigitalIdentity_Evolution.webp",
"file": "unlocking-digital-identity-from-web2-to-sovereign-infts.json"
}Last updated
