Skip to main content
POST
/
api
/
dockerhub
/
organizations
/dockerhub/organizations
curl --request POST \
  --url https://api.anysite.io/api/dockerhub/organizations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "namespace": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "@type": "@dockerhub_organization",
    "uuid": "<string>",
    "full_name": "<string>",
    "company": "<string>",
    "location": "<string>",
    "type": "<string>",
    "badge": "<string>",
    "is_active": false,
    "profile_url": "<string>",
    "image": "<string>",
    "joined_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
namespace
string
required

Organization namespace or its Docker Hub URL

Minimum string length: 1
Examples:

"grafana"

"https://hub.docker.com/u/grafana"

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:@dockerhub_organization
uuid
string | null
full_name
string | null
company
string | null
location
string | null
type
string | null
badge
string | null
is_active
boolean
default:false
profile_url
string | null
image
string | null
joined_at
string | null