Artist URLs

A route like /atist_urls/{id}.json does not exist. Use the search route with search[id] instead.

Search Artist URLs

GET https://e621.net/artist_urls.json

Query Parameters

NameTypeDescription

search[artist_id]

Number

The ID of the artist.

search[artist_name]

String

The name of the artist.

search[is_active]

Boolean

If the artist url is active.

search[url]

String

The url.

search[normalized_url]

String

The normalized url. (http:, trailing /)

search[artist]

String

Legacy name for search[artist_name].

search[url_matches]

String

Legacy name for search[url].

search[normalized_url_matches]

String

Legacy name for search[normalized_url].

search[order]

String

The order of the returned results. One of: id, id_asc, id_desc, artist_id, artist_id_asc, artist_id_desc, url, url_asc, url_desc, normalized_url, normalized_url_asc, normalized_url_desc, is_active, is_active_asc, is_active_desc, created_at, created_at_asc, created_at_desc, updated_at, updated_at_asc, updated_at_desc

search[id]

Number

limit

Number

page

String

[
  {
    "artist_id": 0,
    "created_at": "0000-00-00T00:00:00.000-00:00",
    "id": 0,
    "is_active": true,
    "updated_at": "0000-00-00T00:00:00.000-00:00",
    "url": "https://e621.net",
    "normalized_url": "http://e621.net/",
    "artist": {
      "created_at": "0000-00-00T00:00:00.000-00:00",
      "creator_id": 0, // user id
      "group_name": "",
      "id": 0,
      "is_active": true,
      "is_locked": false,
      "linked_user_id": null, // user id
      "name": "",
      "notes": null,
      "other_names": [
        "othername"
      ],
      "updated_at": "0000-00-00T00:00:00.000-00:00"
    }
  }
]

Last updated