Skip to main content
POST
/
api
/
anaconda
/
channels
/anaconda/channels
curl --request POST \
  --url https://api.anysite.io/api/anaconda/channels \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "channel": "<string>",
  "timeout": 300
}
'
[
  {
    "login": "<string>",
    "@type": "AnacondaChannel",
    "name": "<string>",
    "company": "<string>",
    "location": "<string>",
    "description": "<string>",
    "user_type": "<string>",
    "created_at": 123,
    "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:

"conda-forge"

"bioconda"

"https://anaconda.org/anaconda"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

login
string
required
@type
string
default:AnacondaChannel
name
string | null
company
string | null
location
string | null
description
string | null
user_type
string | null
created_at
integer | null
web_url
string
default:""