Skip to main content
POST
/
api
/
sourceforge
/
projects
/sourceforge/projects
curl --request POST \
  --url https://api.anysite.io/api/sourceforge/projects \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "@type": "SourceforgeProject",
    "name": "",
    "description": "<string>",
    "summary": "<string>",
    "status": "",
    "is_private": false,
    "created_at": 123,
    "homepage_url": "<string>",
    "video_url": "<string>",
    "moved_to_url": "<string>",
    "preferred_support_url": "<string>",
    "image": "<string>",
    "labels": [],
    "developers": [],
    "social_networks": [],
    "tools": [],
    "screenshots": [],
    "audiences": [],
    "development_status": [],
    "environments": [],
    "languages": [],
    "licenses": [],
    "translations": [],
    "operating_systems": [],
    "databases": [],
    "topics": [],
    "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/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
alias
string
required
@type
string
default:SourceforgeProject
name
string
default:""
description
string | null
summary
string | null
status
string
default:""
is_private
boolean
default:false
created_at
integer | null
homepage_url
string | null
video_url
string | null
moved_to_url
string | null
preferred_support_url
string | null
image
string | null
labels
string[]
developers
object[]
social_networks
object[]
tools
object[]
screenshots
object[]
audiences
object[]
development_status
object[]
environments
object[]
languages
object[]
licenses
object[]
translations
object[]
operating_systems
object[]
databases
object[]
topics
object[]
web_url
string
default:""