Skip to main content
POST
/
api
/
sourceforge
/
projects
/
files
/sourceforge/projects/files
curl --request POST \
  --url https://api.anysite.io/api/sourceforge/projects/files \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "SourceforgeFile",
    "path": "",
    "is_folder": false,
    "size": 123,
    "modified_at": 123,
    "weekly_download_count": 123,
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
project
string
required

Project shortname/slug or a SourceForge project URL

Minimum string length: 1
Examples:

"sevenzip"

"https://sourceforge.net/projects/sevenzip/"

count
integer
required

Number of files/folders to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:SourceforgeFile
path
string
default:""
is_folder
boolean
default:false
size
integer | null
modified_at
integer | null
weekly_download_count
integer | null
web_url
string
default:""