Search
Parsers.vc organizes company searches based on the website. Company data is collected in real time from all over the web. The request consists of a website, and the response contains information about the company name, description, category, logo, links to social pages, contact information and more.
Request example:
GET https://vcapi.parsers.me/v2/startups/find?website=https://www.uber.com/
Authorization: Bearer {your-auth-token} or query string parameter
Demo token for authorization (500 requests per month for free):
eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiZGVtbyIsIm5iZiI6MTYyNTA1MTUxMiwiZXhwIjoxNjI1MDU1MTEyLCJpYXQiOjE2MjUwNTE1MTIsImlzcyI6InBhcnNlcnMubWUifQ.rdmNPQgq5M2_cMSYG__-q3hK8IvLo7PWeO4VmW0pzAIyCVtRDp7PqlxHbW_arPCUkypQgJJmBW2fHbnp72mlig5u83fB1_8tmFUdlXHVLxZC0b0Bg7A4LITt7hTidmsqrZB5ynGSDTmh-DtUzqCYVaT4g1g1q_ekwX3Uz0usCnNcrCG6xmxK35ma90CP5-R4j01-YSQbhRlcS9SsOw9J0Bac86kypZhGT5_XSvM0bcLSwQzf6VMWzIqLDOpWseaMCKV2hLVgQCr8xJTsZm2w8Tg6mUagWwewdfwnaez0t1MI_7aZjaLkRvaYT4JKPOqWCXZFrSJjeMG_n56seT6Dyg
Example for demo user with token as URI query-string parameter:
GET https://vcapi.parsers.me/v2/startups/find?website=https://www.uber.com/&token=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiZGVtbyIsIm5iZiI6MTYyNTA1MTUxMiwiZXhwIjoxNjI1MDU1MTEyLCJpYXQiOjE2MjUwNTE1MTIsImlzcyI6InBhcnNlcnMubWUifQ.rdmNPQgq5M2_cMSYG__-q3hK8IvLo7PWeO4VmW0pzAIyCVtRDp7PqlxHbW_arPCUkypQgJJmBW2fHbnp72mlig5u83fB1_8tmFUdlXHVLxZC0b0Bg7A4LITt7hTidmsqrZB5ynGSDTmh-DtUzqCYVaT4g1g1q_ekwX3Uz0usCnNcrCG6xmxK35ma90CP5-R4j01-YSQbhRlcS9SsOw9J0Bac86kypZhGT5_XSvM0bcLSwQzf6VMWzIqLDOpWseaMCKV2hLVgQCr8xJTsZm2w8Tg6mUagWwewdfwnaez0t1MI_7aZjaLkRvaYT4JKPOqWCXZFrSJjeMG_n56seT6Dyg
We don't recommend it for non demo access, because URI parameters can end up in log files that are not completely secure.
Write to info@parsers.vc to get a license.
Responce example:
Status 200 OK
{
"Id": "3580cc69-e274-40a6-9fad-2d7bfebbd0e2",
"Name": "Uber",
"Website": "https://www.uber.com/"
}
The data response payload contains company data.
Status 204 No Content
The requested data for the company was not found on the website.
Status 404 Not Found
Not found or no access to the requested Website.
When your request does not contain select parameter it returns a set of basic fields by default, as the examples above show. However, you can specify which fields you want returned by using the select parameter and listing each field. This overrides the defaults and returns the fields you specify, and the Id of the object, which is always returned.
Basic Startup properties
Id | Startup Id |
Name | Startup Name |
Website | Startup Website |
Advanced Startup properties
>
Logo | Startup Logo |
Description | An array of Descriptions collected from various sources |
An array of Twitter pages collected from various sources | |
An array of Facebook pages collected from various sources | |
An array of Instagram pages collected from various sources | |
An array of LinkedIn pages collected from various sources | |
Medium | An array of Medium pages collected from various sources |
Youtube | An array of Youtube pages collected from various sources |
An array of Emails collected from various sources | |
AngelList | An array of AngelList pages collected from various sources |
ProductHunt | An array of ProductHunt pages collected from various sources |
Location | An array of Locations collected from various sources |
Phone | An array of Phones collected from various sources |
FacebookLikes | Facebook Likes count |
Founded | Foundation year |
FounderName | Startup founder info |
TotalRaised | Total amount raised across all funding rounds |
MembersCount | Members count |
Tags | Venture Fund Category Tags |
GET https://vcapi.parsers.me/v2/startups/find?website=https://www.uber.com/&$select=Id,Name,Description,Logo
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
"Id": "3580cc69-e274-40a6-9fad-2d7bfebbd0e2",
"Name": "Uber",
"Logo": "https://parsers.me/pars/logo/3580cc69-e274-40a6-9fad-2d7bfebbd0e2-0.png",
"Description": "Helping millions of people move towards opportunity every day in over 700 cities around the world. #DoorsAreAlwaysOpening"
}