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

Get all subdomain findings

Request

Subdomain findings list

Query
subdomainstringrequired

subdomain of company

Example: subdomain=google.com
pageinteger

Page number

Example: page=1
curl -i -X GET \
  'https://apidocs.rankiteo.com/_mock/openapi/monitor-getall-subdomain-findings?page=1&subdomain=google.com' \
  -H 'apikey: YOUR_API_KEY_HERE'

Responses

Successful response containing subdomain findings and pagination.

Bodyapplication/json
dataobject
paginationobject
messageobject
Example: {"data":{"subdomain_name":"rankiteo.com","message":"No findings for this domain"}}
Response
application/json
{ "data": { "domain_name": "rankiteo.com", "subdomain": [] }, "pagination": { "current_page": 1, "page_size": 10, "total_pages": 5, "total_items": 47 } }

Get all vulnerability detection for a specific company

Request

Company vulnerability detection

Query
pageinteger

Page number

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

Responses

Successful response containing LinkedIn ID and vulnerability detection data

Bodyapplication/json
linkedin_idstring
Example: "apple"
dataArray of objects
paginationobject
messagestring
Example: "No vulnerabilty detection found for this Linkedin Id"
Response
application/json
{ "linkedin_id": "apple", "data": [ {} ], "pagination": { "current_page": 1, "page_size": 1, "total_pages": 1, "total_items": 1 } }

Get company history

Request

Company history information

curl -i -X GET \
  https://apidocs.rankiteo.com/_mock/openapi/monitor-getcompany-history \
  -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", "incidents": [ {} ] }

Underwriter

Operations

Vulnerability

Operations