implemented detailed endpoint

This commit is contained in:
daniel muniz
2026-04-14 09:00:25 -03:00
parent 0bc1adb738
commit dfda9eac9a
6 changed files with 492 additions and 9 deletions

49
test-detailed.http Normal file
View File

@@ -0,0 +1,49 @@
@baseUrl = http://localhost:3333
### Test detailed endpoint with Facebook
POST {{baseUrl}}/detailed
Content-Type: application/json
{
"fqdn": "facebook.com"
}
### Test detailed endpoint with Google
POST {{baseUrl}}/
Content-Type: application/json
{
"fqdn": "tiktok.com"
}
### Test detailed endpoint with Reddit
POST {{baseUrl}}/detailed
Content-Type: application/json
{
"fqdn": "reddit.com"
}
### Test detailed endpoint with YouTube
POST {{baseUrl}}/detailed
Content-Type: application/json
{
"fqdn": "youtube.com"
}
### Test detailed endpoint with Twitter
POST {{baseUrl}}/detailed
Content-Type: application/json
{
"fqdn": "twitter.com"
}
### Test simple endpoint with Facebook (original endpoint)
POST {{baseUrl}}/
Content-Type: application/json
{
"fqdn": "facebook.com"
}