Keys you can use for searching: id, name, author_id, author_name, description, tags, platforms, uploader_id, created_at, updated_at, user_tags, ai_tags, ai_tags_v2, favorite_count, comment_count, selected_count, all, all_tags.
description*:"girl" name*:"girl"- Description and name must contain girl.description?*:"girl" name?*:"girl"- Description or name can contain girl.description*:"girl" tags!*:"sex"- Description must contain girl and tags must not contain sex.ai_tags*:["tag1", "tag2"]- Must have tag1 and tag2 on AI Tags. This is anANDcondition.ai_tags?*:["tag1", "tag2"]- Can have tag1 or tag2 on AI Tags. This is aORcondition.
You can both use [] array or direct value. If you want to use spaces in a value, you should use double quotes (key:"hello world").
key:value- key equals valuekey!:value- key not equals valuekey!:[value1, value2]- key not equals value (multiple)key>:value- key greater than valuekey<:value- key less than valuekey>=:value- key greater than or equals valuekey<=:value- key less than or equals valuekey?:[value1, value2]- key in [value1, value2]key*:value- key contains value (and)key_*:value- key starts with value (and)key*_:value- key ends with value (and)key!*:value- key not contains valuekey!_*:value- key not starts with valuekey!*_:value- key not ends with valuekey?*:value- key contains value (or)key?_*:value- key starts with value (or)key?*_:value- key ends with value (or)