🎨 Artia API

World art collection and exhibition tracking

About Artia API

Track artworks, museums, and exhibitions worldwide. Find where any artwork is currently displayed, explore museum collections, and discover touring exhibitions.

Endpoints

Example Request

curl -H "X-API-Key: sc_live_free_abc123..." \
  "https://socials.ppn-hub.com/artia/api/v1/artworks/search?artist=picasso"

Search Parameters

Response Example

{
  "data": {
    "artworks": [{
      "id": "guernica",
      "title": "Guernica",
      "artist": "Pablo Picasso",
      "year": 1937,
      "medium": "oil_on_canvas",
      "current_location": {
        "museum": "Museo Nacional Centro de Arte Reina Sofía",
        "city": "Madrid",
        "country": "Spain",
        "gallery": "Gallery 206, 2nd Floor",
        "on_display": true,
        "last_verified": "2025-11-10"
      },
      "dimensions": {
        "height_cm": 349,
        "width_cm": 776
      }
    }],
    "pagination": {
      "limit": 20,
      "offset": 0,
      "total": 1,
      "has_more": false
    }
  }
}