Rankiteo API (0.0.1-beta)

The Rankiteo API

Download OpenAPI description
Languages
Servers
Mock server

https://apidocs.rankiteo.com/_mock/openapi/

production

https://api.rankiteo.com/

General

Operations

Monitor

Operations

Underwriter

Operations

Get company SBOM data by linkedin id

Request

Company SBOM data includes technology information

Query
linkedin_idstringrequired

LinkedIn identifier for the target company

Example: linkedin_id=google
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompanysbom?linkedin_id=google&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing subdomains and technology information or a message

Bodyapplication/json
dataArray of objects
paginationobject
messagestring
Example: "No SBOM vulnerability found"
Response
application/json
{ "data": [ {} ], "pagination": { "current_page": 1, "page_size": 10, "total_pages": 10, "total_items": 100 } }

Get company SBOM data with CVE by linkedin id

Request

Company SBOM data includes technology information with cve

Query
linkedin_idstringrequired

LinkedIn identifier for the target company

Example: linkedin_id=google
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompanysbomcve?linkedin_id=google&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing subdomains and technology information or a message

Bodyapplication/json
dataArray of objects
paginationobject
messagestring
Example: "No SBOM vulnerability found"
Response
application/json
{ "data": [ {} ], "pagination": { "current_page": 1, "page_size": 10, "total_pages": 10, "total_items": 100 } }

Get company SBOM data by domain and linkedin id

Request

Company SBOM data includes technology information

Query
linkedin_idstringrequired

LinkedIn identifier for the target company

Example: linkedin_id=google
domainstringrequired

domain of company

Example: domain=google.com
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompanysbomdomain?domain=google.com&linkedin_id=google&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing subdomains and technology information or a message

Bodyapplication/json
dataobject
paginationobject
messagestring
Example: "No SBOM vulnerability found"
Response
application/json
{ "data": { "domain_name": "google.com", "subdomain": [] }, "pagination": { "current_page": 1, "page_size": 10, "total_pages": 3, "total_items": 23 } }

Vulnerability

Operations