1. API Operations
  2. Get wordlists

Deprecated

You are viewing a deprecated version of our API Reference. Please visit the up-to-date documentation.

Get wordlists

This operation returns the list of wordlists belonging to the current user, including their names.


Request

Parameters
Parameter
op
Type
string
required
true

Get the list of wordlists. The value is "get_wordlists".

Parameter
limit
Type
integer
required
true

Limit the number of returned wordlists.

{
  "op": "get_wordlists",
  "limit": 3
}

Response

Attributes
Attribute
op_status
Type
string

The status of the operation. The value can be "success" or "fail".

Attribute
wordlists
Type
array

The list of wordlists for the current user. Returned in case of a successful operation.

Attribute
error
Type
string

Error message. Returned in case of a failed operation.

{
  "op_status": "success",
  "wordlists": [
    {
      "wordlist_id": 1,
      "name": "URL Fuzzer (default)"
    },
    {
      "wordlist_id": 2,
      "name": "Common config files (default)"
    },
    {
      "wordlist_id": 10,
      "name": "My wordlist"
    }
  ]
}