Skip to main content

Get public user data

GET 

/v2/users/:userId

Returns public information about a specific user account, similar to what can be seen on public profile pages (e.g. https://apify.com/apify).

This operation requires no authentication token.

Request

Path Parameters

    userId string required

    User ID or username.


    Example: HGzIk8z78YcAPEB

Status 200

Response Headers
    {
    "data": {
    "username": "d7b9MDYsbtX5L7XAj",
    "profile": {
    "bio": "I started web scraping in 1985 using Altair BASIC.",
    "name": "Jane Doe",
    "pictureUrl": "https://apify.com/img/anonymous_user_picture.png",
    "githubUsername": "torvalds.",
    "websiteUrl": "http://www.example.com",
    "twitterUsername": "@BillGates"
    }
    }
    }