Tags
Tag resolver.
Note
If we're being real I'm not 100% sure if this thing actually works right, it's intended to be supplied with a list of tags and return all of the top level tags. It does not resolve implication chains, all tags in the chain must be present for it to remove the implied tags.
Warning
This tool is not designed to see public use. Its api is weird and unpredictable, and I do not plan on fixing it.
Get
GEThttps://tags.e621.church/get
Query Parameters
| Name | Type | Description |
|---|---|---|
| tags * | String | Space separated set of tags |
| basic | Boolean | If only tags should be returned. Defaults to false. |
200 OK: Success
// supplied "pikachu generation_1_pokemon pokemon_(species) m" { "tags": [ "pikachu", "male" ], "aliases": { "list": [ "m" ], "results": { "m": "male" } }, "implied": { "list": [ "pokemon_(species)", "generation_1_pokemon" ], "results": { "pokemon_(species)": [ // (...) "generation_1_pokemon", // (...) ], "generation_1_pokemon": [ // (...) "pikachu", // (...) ] } } }
200 OK: Success (Basic)
// supplied "pikachu generation_1_pokemon pokemon_(species) m" { "tags": [ "pikachu", "male" ] }
422 Unprocessable Entity: Missing Tags
{ "success": false, "message": "Missing tags", "code": null }
