Developer Platform

Build with Artsays API

Integrate AI-powered artwork authentication into your applications with our comprehensive REST API and official SDKs.

Quick Start

Verify your first artwork in minutes

import Artsays from '@artsays/sdk';

const client = new Artsays({
  apiKey: process.env.ARTSAYS_API_KEY
});

const result = await client.verify({
  image: fs.readFileSync('./artwork.jpg'),
  title: 'Starry Night Study',
  artist: 'Vincent van Gogh'
});

console.log(result.authenticity_score);
console.log(result.certificate_id);

Built for Scale

Enterprise-grade infrastructure for mission-critical applications

Lightning Fast

Average response time under 3 seconds for complete verification

Secure by Default

TLS encryption, API key rotation, and audit logging built-in

Global CDN

Edge endpoints in 50+ regions for minimal latency worldwide

Webhooks

Real-time notifications for verification events and status changes

API Reference

RESTful endpoints for artwork authentication

POST/api/v1/verify

Submit artwork for AI authentication

GET/api/v1/artworks/:id

Retrieve artwork details and verification status

GET/api/v1/coa/:id

Get Certificate of Authenticity data

GET/api/stats

Get platform statistics

POST/api/webhooks/verification

Receive verification completion callbacks

Official SDKs

Your Language, Your Way

We maintain official SDKs for all major programming languages. Full TypeScript support, comprehensive documentation, and community-driven examples.

JS
JavaScript/TypeScript
PY
Python
RB
Ruby
GO
Go
PHP
PHP
JV
Java
npm install @artsays/sdk
// Initialize the client
import { Artsays } from '@artsays/sdk';

const artsays = new Artsays({
  apiKey: process.env.ARTSAYS_API_KEY
});

// Verify artwork
const verification = await artsays
  .verify()
  .image(buffer)
  .metadata({ title, artist })
  .execute();

// Get certificate
const coa = await artsays
  .getCertificate(verification.id);

Response Structure

Clean, predictable JSON responses

200 OKPOST /api/v1/verify
JSON
{
  "id": "ver_8x7gH2kL9mN",
  "status": "completed",
  "artwork": {
    "title": "Starry Night Study",
    "artist": "Vincent van Gogh",
    "medium": "Oil on canvas",
    "dimensions": "73.7 cm × 92.1 cm"
  },
  "verification": {
    "authenticity_score": 0.982,
    "confidence": "high",
    "risk_level": "low",
    "checks": {
      "style_fingerprint": "passed",
      "brushstroke_analysis": "passed",
      "pigment_verification": "passed",
      "forgery_detection": "passed"
    }
  },
  "certificate": {
    "id": "coa_4kP2nM8vX",
    "blockchain_hash": "0x7f83b...",
    "issued_at": "2025-12-28T14:30:00Z"
  }
}

API Pricing

Pay only for what you use

Starter

Free

100 requests/month

  • Basic verification
  • Community support
  • Rate limited
Most Popular

Pro

₹7,999/month

10,000 requests/month

  • Advanced verification
  • Priority support
  • Webhooks
  • Higher rate limits

Enterprise

Custom

Unlimited

  • Custom SLA
  • Dedicated support
  • On-premise option
  • Custom integrations

Start Building Today

Get your API key instantly and make your first verification request in under 5 minutes.