Skip to main content
POST
/
api
/
gitlab
/
users
/gitlab/users
curl --request POST \
  --url https://api.anysite.io/api/gitlab/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "username": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "@type": "@gitlab_user",
    "name": "",
    "state": "",
    "public_email": "<string>",
    "image": "<string>",
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
username
string
required

GitLab username

Minimum string length: 1
Example:

"dnsmichi"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
@type
string
default:@gitlab_user
name
string
default:""
state
string
default:""
public_email
string | null
image
string | null
web_url
string
default:""