Skip to main content
POST
/
api
/
indiehackers
/
users
/
search
/indiehackers/users/search
curl --request POST \
  --url https://api.anysite.io/api/indiehackers/users/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "IndiehackersUser",
    "alias": "<string>",
    "full_name": "<string>",
    "bio": "<string>",
    "email": "<string>",
    "twitter_handle": "<string>",
    "city": "<string>",
    "region": "<string>",
    "country": "<string>",
    "follower_count": 123,
    "interests": [],
    "stage": "<string>",
    "code_level": "<string>",
    "created_at": 123,
    "profile_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Free-text search over founder username, full name, bio and location

Minimum string length: 1
Examples:

"stripe"

"New York"

"designer"

count
integer
required

Max number of users to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:IndiehackersUser
alias
string | null
full_name
string | null
bio
string | null
email
string | null
twitter_handle
string | null
city
string | null
region
string | null
country
string | null
follower_count
integer | null
interests
string[]
stage
string | null
code_level
string | null
created_at
integer | null
profile_url
string | null