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 all companies inside portfolio

Request

Portfolio companies list

curl -i -X GET \
  https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompaniesfromportfolio \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response with security scores for multiple companies

Bodyapplication/jsonArray [
linkedin_idstring

LinkedIn ID of the company

Example: "meta"
company_namestring

Name of the company

Example: "Meta"
security_scorenumber(float)

Security score of the company

Example: 727.4
last_updated_score_datestring(date-time)

Timestamp of the last update for the security score

Example: "2024-10-21T08:06:07"
]
Response
application/json
[ { "linkedin_id": "meta", "company_name": "Meta", "security_score": 727.4, "last_updated_score_date": "2024-10-21T08:06:07" } ]

Get company history by crunchbase

Request

Company history information

Query
crunchbase_idstringrequired

Cruchbase identifier for the target company

Example: crunchbase_id=apple
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompany-history-crunchbase?crunchbase_id=apple' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing history

Bodyapplication/json
dataArray of objects
messagestring
Example: "No history available"
Response
application/json
{ "linkedin_id": "apple", "crunchbase_id": "apple", "crunchbase_link": "https://www.crunchbase.com/organization/apple", "incidents": [ {} ] }

Get company history by domain

Request

Company history information

Query
domainstringrequired

Domain identifier for the target company

Example: domain=apple.com
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-getcompany-history-domain?domain=apple.com' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing history

Bodyapplication/json
dataArray of objects
messagestring
Example: "No history available"
Response
application/json
{ "domain": "apple.com", "incidents": [ {} ] }

Vulnerability

Operations