Join us in London for Infosecurity Europe June 2 – 4, 2026 | Booth C69 | Excel London | Get a FREE ticket
curl --request POST \
--url http://api.scanoss.com/v2/cryptography/algorithms/range/components \
--header 'Content-Type: application/json' \
--data '
{
"components": [
{
"purl": "pkg:github/scanoss/engine@1.0.0"
},
{
"purl": "pkg:github/scanoss/scanoss.py@v1.30.0"
}
]
}
'{
"components": [
{
"purl": "pkg:github/scanoss/engine",
"versions": [
"1.0.0",
"2.0.0"
],
"algorithms": [
{
"algorithm": "AES",
"strength": "Strong"
}
]
},
{
"purl": "pkg:github/scanoss/scanoss.py",
"versions": [
"v1.30.0"
],
"algorithms": [
{
"algorithm": "SHA-256",
"strength": "Strong"
}
]
}
],
"status": {
"status": "SUCCESS",
"message": "Algorithms in range Successfully retrieved"
}
}Analyzes multiple components across version ranges and returns all cryptographic algorithms detected along with the versions where they appear for each component.
curl --request POST \
--url http://api.scanoss.com/v2/cryptography/algorithms/range/components \
--header 'Content-Type: application/json' \
--data '
{
"components": [
{
"purl": "pkg:github/scanoss/engine@1.0.0"
},
{
"purl": "pkg:github/scanoss/scanoss.py@v1.30.0"
}
]
}
'{
"components": [
{
"purl": "pkg:github/scanoss/engine",
"versions": [
"1.0.0",
"2.0.0"
],
"algorithms": [
{
"algorithm": "AES",
"strength": "Strong"
}
]
},
{
"purl": "pkg:github/scanoss/scanoss.py",
"versions": [
"v1.30.0"
],
"algorithms": [
{
"algorithm": "SHA-256",
"strength": "Strong"
}
]
}
],
"status": {
"status": "SUCCESS",
"message": "Algorithms in range Successfully retrieved"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.scanoss.com/llms.txt
Use this file to discover all available pages before exploring further.
Represents a list of software component to be analyzed by SCANOSS API services. Allows analysis of multiple software components in a single API call, improving performance over individual requests.
Represents a list of software component to be analyzed by SCANOSS API services. Allows analysis of multiple software components in a single API call, improving performance over individual requests.
Show child attributes
A successful response.
Response message for GetComponentsAlgorithmsInRange method.
Contains cryptographic algorithm information for multiple components across version ranges processed in a single batch request. Each component is analyzed independently.