Skip to main content
POST
/
api
/
crates
/
packages
/
owners
/crates/packages/owners
curl --request POST \
  --url https://api.anysite.io/api/crates/packages/owners \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "CratesOwner",
    "id": 123,
    "login": "",
    "name": "<string>",
    "kind": "",
    "url": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package
string
required

Crate name (e.g. 'serde') or crates.io crate URL

Minimum string length: 1
Examples:

"serde"

"https://crates.io/crates/tokio"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:CratesOwner
id
integer | null
login
string
default:""
name
string | null
kind
string
default:""
url
string | null
image
string | null