[ Hidden Content! ]
The Goal: Extracting specific account info (like "Subscription End Date") from a messy HTML/JSON response.
Steps:
- The Hit: Once logged in, find the "Account Settings" page URL.
- The Request: Add a
GET
request to that URL after your login block.
- Regex Identification: View the source code of that page. Find the data you want.
- Example:
<span>Membership: Premium</span>
- Example:
- The Pattern: In your
PARSE
block, use Regex mode.- Pattern:
Membership: (.*?)</span>
- Pattern:
- Output: Assign this to a "Capture" variable. Now every hit shows exactly what kind of account it is.









![[Image: kwi6yAD.gif]](https://patched.to/pbb-proxy/UUNCQ0JeTUoNGVgIBhBLGwVYDxhTR1ADSnIlHgFZUA--/kwi6yAD.gif?t=1771681490)