summaryrefslogtreecommitdiffstats
path: root/internal/client/usrsx.go
diff options
context:
space:
mode:
authors <[email protected]>2025-11-10 15:22:32 -0500
committers <[email protected]>2025-11-10 15:22:32 -0500
commit8383a241fc3cf5b022c9c53f8f19690edf04177b (patch)
tree887a489f7931d07373530c7e053f0343dca65e1d /internal/client/usrsx.go
parent9a9e79f232b83d3bd2a816287272515863df1299 (diff)
downloaddborg-8383a241fc3cf5b022c9c53f8f19690edf04177b.tar.gz
dborg-8383a241fc3cf5b022c9c53f8f19690edf04177b.zip
refactor: restructure client modules and add config file supportv0.8.1
- Split large osint.go client into focused modules (bssid.go, breachforum.go, buckets.go, etc.) - Add config file support with init command for API key management - Remove api-key flag in favor of config file + env var fallback - Update API paths to remove /osint prefix - Add crawl endpoint streaming support - Improve error handling with 402 payment required status
Diffstat (limited to 'internal/client/usrsx.go')
-rw-r--r--internal/client/usrsx.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/client/usrsx.go b/internal/client/usrsx.go
index a3aaa66..9740468 100644
--- a/internal/client/usrsx.go
+++ b/internal/client/usrsx.go
@@ -24,7 +24,7 @@ func (c *Client) CheckUsernameStream(params *models.USRSXParams, callback func(r
queryParams.Add("max_tasks", fmt.Sprintf("%d", params.MaxTasks))
}
- path := fmt.Sprintf("/osint/username/%s", url.PathEscape(params.Username))
+ path := fmt.Sprintf("/username/%s", url.PathEscape(params.Username))
fullURL := c.config.BaseURL + path
if len(queryParams) > 0 {
fullURL += "?" + queryParams.Encode()