Blog

📝 Blog API

Access public blog posts and announcements.

List all blog posts

get

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
get
/blog
GET /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"
  }
]

Get blog post by slug

get

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
slugstringRequired

URL-friendly blog post identifier

Example: unlocking-digital-identity-from-web2-to-sovereign-infts
Responses
200

OK

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