GET
/api/artists-list List Artists (Lightweight)
Lightweight artist listing for quick search and selection.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
| search | string | No | query | Optional artist query term. |
| token | string | Yes | query | MoMA API token. |
Try It
Client-side request execution
Live URL
https://api.moma.org/api/artists-list?search=fridaExample Request
GET /api/artists-list?search=frida&token=YOUR_TOKEN
Example Response
{
"source": "MoMA TMS API",
"language": "en",
"resultsCount": 1,
"artists": [
{
"artistID": 1234,
"displayName": "Frida Kahlo"
}
]
}