Single Artwork Card
Submit one artwork and receive scores, overall comments, highlights, and a parent-friendly card.
MESA ART API · AI Art Education Assessment Engine
Upload one artwork photo or a set of works to receive M / E / S / A observations, growth comments, and gallery-style report data. The console is ready for API key creation, trial access, and documentation.
Turn one artwork into explainable observations, highlights, and growth suggestions.
Products
From one-time artwork feedback to long-term growth tracking, MESA Art supports both lightweight diagnosis and complete reporting.
Submit one artwork and receive scores, overall comments, highlights, and a parent-friendly card.
Submit 6-12 works to generate report data for stage summaries, parent meetings, and long-term records.
Use either a public image_url or local image_base64 upload. JPEG / PNG, max 10MB, at least 256×256.
Four dimensions
The assessment is not about labeling children. It turns modeling, color, composition, and detail into explainable growth clues.
Shape, line control, brush variation, and form expression.
Main palette, color echoes, tonal layers, and emotional expression.
Visual focus, spatial structure, subject relationships, and rhythm.
Completeness, detail richness, and overall expressive power.
API Preview
MESA-S returns single-artwork diagnosis synchronously. MESA-J uses submit, poll, and render for growth reports.
{
"status": "ready",
"endpoint": "POST /v1/score",
"product": "MESA-S"
}
Quick start
import base64, requests
b64 = base64.b64encode(
open("work.jpg", "rb").read()
).decode()
r = requests.post(
"https://api.mesaart.cn/v1/score",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"product": "MESA-S",
"student": {"name": "Student", "age": 8},
"works": [{
"image_base64": b64,
"title": "Creative Collage"
}]
}
)
print(r.json())
Use cases
Schools or studios can turn 6-12 works into a gallery-style report for parent meetings and stage feedback.
Trend data, dimension growth, first-last comparison, and suggestions help teachers see change over time.
MESA-S turns “good work” into visual clues, highlights, and encouragement parents can understand.
Output samples
MESA-S creates single-artwork cards for parent communication; MESA-J can organize works into a stage growth gallery.
Open console
Integration basics
All APIs use Bearer Token authentication. Base URL: https://api.mesaart.cn. The console provides API keys, trials, balance checks, and full documentation.
Create an API Key, check trial quota, and read the full API documentation.