Skip to main content
POST
/
api
/
anaconda
/
channels
/
packages
/anaconda/channels/packages
curl --request POST \
  --url https://api.anysite.io/api/anaconda/channels/packages \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "channel": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "channel": "<string>",
    "@type": "AnacondaChannelPackage",
    "full_name": "",
    "summary": "<string>",
    "description": "<string>",
    "package_types": [],
    "homepage": "<string>",
    "latest_version": "<string>",
    "version_count": 0,
    "platforms": {},
    "conda_platforms": [],
    "license": "<string>",
    "license_url": "<string>",
    "dev_url": "<string>",
    "doc_url": "<string>",
    "source_git_url": "<string>",
    "download_count": 0,
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
channel
string
required

Channel (owner) login, or anaconda.org channel URL

Minimum string length: 1
Examples:

"bioconda"

"conda-forge"

"https://anaconda.org/main"

count
integer
required

Number of packages 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
channel
string
required
@type
string
default:AnacondaChannelPackage
full_name
string
default:""
summary
string | null
description
string | null
package_types
string[]
homepage
string | null
latest_version
string | null
version_count
integer
default:0
platforms
object
conda_platforms
string[]
license
string | null
license_url
string | null
dev_url
string | null
doc_url
string | null
source_git_url
string | null
download_count
integer
default:0
web_url
string
default:""