← Back to DevHub
A

Art Blog API

Content API

Explore creative arts content including illustrations, graphic design, photography, and digital art with rich metadata and tagging.

API Endpoint

https://bookchaowalit-artblog-frontend.vercel.app/api/mcp

Endpoints

get_art_posts

tools/call

Get art blog posts

search_art_content

tools/call

Search art content

get_art_post

tools/call

Get specific art post

Quick Start

1. Make a POST request to the API endpoint:

curl -X POST https://bookchaowalit-artblog-frontend.vercel.app/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list"
  }'

2. Call a specific tool:

curl -X POST https://bookchaowalit-artblog-frontend.vercel.app/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_art_posts",
      "arguments": {}
    }
  }'