Skip to content

wukalt/FSL_API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FSL API

مرور کلی

این API برای دریافت لیست اخبار از Hacker News و همچنین Scrape کردن متن مقالات استفاده می‌شود.
API در حال حاضر بر روی Render Service اجرا میشود. هر گونه تغییر از طریق همین Document اعلام خواهد شد.

Endpoints:

  • GET / → دریافت لینک آخرین اخبار از صفحه اصلی HackerNews
  • GET /scrape?url=<article_url> → دریافت متن کامل مقاله

Example Request:

curl -X GET https://fsl-api-fhk5.onrender.com/

Response:

{
  "urls": [
    "https://thehackernews.com/2025/08/russian-group-encrypthub-exploits-msc.html",
    "https://thehackernews.com/2025/08/microsoft-discloses-exchange-server.html",
    "https://thehackernews.com/2025/08/zero-trust-ai-privacy-in-age-of-agentic.html"
    ....
  ]
}

و بعد از انتخاب لینک مقاله میتوانید آن را Scrape کنید.

مسیر:

GET https://fsl-api-fhk5.onrender.com/scrape?url=FULL_LINK_HERE

نمونه:

Request:

GET https://fsl-api-fhk5.onrender.com/scrape?url=https://thehackernews.com/2025/08/russian-group-encrypthub-exploits-msc.html

Response:

{
  "content": "The employees in your organization can install ... ",
  "url": "https://thehackernews.com/2025/08/the-wild-west-of-shadow-it.html"
}

در کلید content متن کامل خبر برگردانده میشود. کلید url لینک وارد شده را مجددا بر میگرداند.

About

FSL API source tree

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors