Name | Type | Description | Notes |
---|---|---|---|
eq | list[str] | Equal filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a comma-separated list of contract tags to get contracts with exactly the same set of tags. Avoid using this mode and use `.any` or `.all` instead, because it may not work as expected due to internal 'hidden' tags. Example: `?tags=fa2` or `?tags=fa1,fa12`. | [optional] |
any | list[str] | Has any filter mode. \ Specify a comma-separated list of contract tags to get contracts where at least one of the specified tags is presented. Example: `?tags.any=fa2` or `?tags.any=fa1,fa12`. | [optional] |
all | list[str] | Has all filter mode. \ Specify a comma-separated list of contract tags to get contracts where all of the specified tags are presented. Example: `?tags.all=fa2` or `?tags.all=fa1,fa12`. | [optional] |