Skip to main content
POST
/
api
/
levelsfyi
/
titles
/levelsfyi/titles
curl --request POST \
  --url https://api.anysite.io/api/levelsfyi/titles \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "title": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@levelsfyi_title",
    "id": 123,
    "category": "<string>",
    "description": "<string>",
    "image": "<string>",
    "median_total_compensation": 123,
    "aliases": [],
    "companies_with_levels": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
title
string
required

Job title alias (the URL segment, e.g. 'software-engineer')

Minimum string length: 1
Examples:

"software-engineer"

"data-scientist"

"product-manager"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@levelsfyi_title
id
integer | null
category
string | null
description
string | null
image
string | null
median_total_compensation
integer | null
aliases
string[]
companies_with_levels
string[]