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 companies scoring data recently scanned

Request

Last scanned companies

Security
KeyAuth
Query
pageinteger

Page number

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

Responses

Companies information response

Bodyapplication/json
dataArray of objects

List of companies

paginationobject

Pagination details

Response
application/json
{ "data": [ { … } ], "pagination": { "current_page": 1, "page_size": 2, "total_pages": 1, "total_items": 2 } }

Get similar company by crunchbase id

Request

Company Linkedin id

Security
KeyAuth
Query
crunchbase_idstringrequired

Crunchbase id identifier for the target company

Example: crunchbase_id=apple
pageinteger

Page number

Example: page=1
min_employee_countinteger

Minimum Employee Count

Example: min_employee_count=100
max_employee_countinteger

Maximum Employee Count

Example: max_employee_count=1000
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-similar-crunchbase-company?crunchbase_id=apple&max_employee_count=1000&min_employee_count=100&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing linkedin ids

Bodyapplication/json
dataArray of objects
messagestring
Example: "No companies found"
Response
application/json
{ "crunchbase_id": "apple", "data": [ "ness-ses", "linkedin", "v-nova-ltd-", "blackbaud", "vmwarehorizon", "citrix", "kaseya", "software-ag", "redocly", "dynamicweb-software" ], "pagination": { "current_page": 1, "page_size": 10, "total_pages": 5, "total_items": 47 } }

Get similar company by linkedin id

Request

Company Linkedin id

Security
KeyAuth
Query
linkedin_idstringrequired

Linkedin id identifier for the target company

Example: linkedin_id=apple
pageinteger

Page number

Example: page=1
min_employee_countinteger

Minimum Employee Count

Example: min_employee_count=100
max_employee_countinteger

Maximum Employee Count

Example: max_employee_count=1000
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/underwriter-similar-linkedin-company?linkedin_id=apple&max_employee_count=1000&min_employee_count=100&page=1' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing linkedin ids

Bodyapplication/json
dataArray of objects
messagestring
Example: "No companies found"
Response
application/json
{ "linkedin_id": "apple", "data": [ "ness-ses", "linkedin", "v-nova-ltd-", "blackbaud", "vmwarehorizon", "citrix", "kaseya", "software-ag", "redocly", "dynamicweb-software" ], "pagination": { "current_page": 1, "page_size": 10, "total_pages": 5, "total_items": 47 } }

Vulnerability

Operations