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 specific company infrastructure assets

Request

Company 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-getcompanyinfrastructureassets?linkedin_id=google&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing company information, network endpoints, and pagination data

Bodyapplication/json
linkedin_idstring

Unique identifier for the company on LinkedIn

Example: "google"
company_namestring

The official name of the company

Example: "Google"
websitestring

Official website URL of the company

Example: "https://goo.gle/3DLEokh"
industrystring

Industry category of the company

Example: "Software Development"
descriptionstring

A brief description of the company and its mission

Example: "A problem isn't truly solved until it's solved for all. Googlers build products that help create opportunities for everyone"
number_of_infrastructure_endpointinteger

Total number of network endpoints associated with the company's infrastructure

Example: 1600
network_endpointsArray of objects

List of network endpoints used by the company

paginationobject

Information about the pagination of results

messagestring
Example: "No data available"
Response
application/json
{ "linkedin_id": "google", "company_name": "Google", "website": "https://goo.gle/3DLEokh", "industry": "Software Development", "description": "A problem isn't truly solved until it's solved for all", "number_of_infrastructure_endpoint": 2241, "network_endpoints": [ {} ], "pagination": { "current_page": 1, "page_size": 10, "total_pages": 10, "total_items": 100 } }

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 } }

Vulnerability

Operations