Skip to main content
polymer-pay-aviato Company and person intelligence platform with funding rounds, investments, employees, founders, LinkedIn social data, and market maps. Access via Polymer Pay proxy.
Ir a la instalación Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/polymerdao/pay-apis --skill polymer-pay-aviatoEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
name polymer-pay-aviato description Company and person intelligence platform with funding rounds, investments, employees, founders, LinkedIn social data, and market maps. Access via Polymer Pay proxy. endpoints [{"path":"/company/enrich","method":"GET","price":"$0.12","description":"Get full company details"},{"path":"/company/search","method":"POST","price":"$0.02","description":"Search companies with DSL"},{"path":"/person/enrich","method":"GET","price":"$0.03","description":"Get full person details"},{"path":"/person/search","method":"POST","price":"$0.02","description":"Search people with DSL"},{"path":"/person/simple/search","method":"GET","price":"$0.02","description":"Simplified person search"},{"path":"/company/funding-rounds","method":"GET","price":"$0.08","description":"Get company funding history"},{"path":"/company/employees","method":"GET","price":"$0.02","description":"Get company employees"},{"path":"/person/email","method":"GET","price":"$0.04","description":"Get person email addresses"},{"path":"/company/founders","method":"GET","price":"$0.02","description":"Get company founders"},{"path":"/company/investments","method":"GET","price":"$0.04","description":"Get company investments"},{"path":"/company/investments/outbound","method":"GET","price":"$0.04","description":"Get outbound investments"},{"path":"/company/funds","method":"GET","price":"$0.08","description":"Get funds raised"},{"path":"/company/acquisitions","method":"GET","price":"$0.12","description":"Get acquisitions"},{"path":"/company/investments/funds","method":"GET","price":"$0.04","description":"Get company investment funds"},{"path":"/social/company/posts","method":"GET","price":"$0.08","description":"Get LinkedIn company posts"},{"path":"/social/person/posts","method":"GET","price":"$0.08","description":"Get LinkedIn person posts"},{"path":"/social/post/{postUrn}/reactions","method":"GET","price":"$0.08","description":"Get post reactions"},{"path":"/social/post/{postUrn}/comments","method":"GET","price":"$0.08","description":"Get post comments"},{"path":"/social/post/{postUrn}/reshares","method":"GET","price":"$0.08","description":"Get post reshares"},{"path":"/person/founded-companies","method":"GET","price":"$0.02","description":"Get companies founded by person"},{"path":"/person/vestings","method":"GET","price":"$0.16","description":"Get person vestings"},{"path":"/person/investments/companies","method":"GET","price":"$0.02","description":"Get person company investments"},{"path":"/person/investments/funds","method":"GET","price":"$0.02","description":"Get person investment funds"},{"path":"/marketmap/generate","method":"POST","price":"$0.20","description":"Generate market map"},{"path":"/geocoder/search","method":"GET","price":"$0.01","description":"Search locations"}] metadata {"polymer-pay-skill":"🏢","requires.env":"POLYMER_PAY_API_KEY","requires.primaryEnv":"POLYMER_PAY_API_KEY"} registries {} provider orthogonal
Aviato
Comprehensive company and person intelligence platform that enriches companies and people, searches with advanced DSL queries, retrieves funding rounds, investments, employees, founders, contact info, LinkedIn social data, and generates market maps.
Authentication
All requests route through the Polymer Pay proxy. Include your Polymer Pay API key in every request:
{
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Base URL: https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato
To get an Polymer Pay API key, sign up at https://my.pay.polymerlabs.org/dashboard/api-keys .
Common Operations
Get Company Enrichment
Enrich a company with full details using any identifier (website, LinkedIn URL, domain, etc.).
Pricing: $0.12
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/enrich?website=stripe.com" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Returns company name, industry, description, funding info, employee count, technologies, and more.
Search Companies Search for companies using Aviato's DSL query language.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/search" ,
"method" : "POST" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
} ,
"body" : {
"dsl" : {
"filters" : [
{ "field" : "industry" , "operator" : "equals" , "value" : "Software" }
] ,
"limit" : 10 ,
"offset" : 0
}
}
}
Get Person Enrichment Enrich a person with full profile details using any identifier.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/enrich?linkedinURL=https://linkedin.com/in/sundarpichai" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Search People Search for people using Aviato's DSL query language.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/search" ,
"method" : "POST" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
} ,
"body" : {
"dsl" : {
"filters" : [
{ "field" : "location" , "operator" : "equals" , "value" : "San Francisco" } ,
{ "field" : "headline" , "operator" : "contains" , "value" : "CEO" }
] ,
"limit" : 10 ,
"offset" : 0
}
}
}
Get Company Funding Rounds Retrieve all funding rounds for a company.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/funding-rounds?id=aviato-company-id&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Employees Retrieve employees of a company with pagination.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/employees?id=aviato-company-id&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person Email Retrieve email addresses for a person.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/email?linkedinURL=https://linkedin.com/in/sundarpichai" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Founders Retrieve founders of a company.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/founders?id=aviato-company-id&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get LinkedIn Company Posts Retrieve posts from a company's LinkedIn page.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/social/company/posts?linkedinNumID=1441" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Generate Market Map Generate a market map to find similar companies.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/marketmap/generate" ,
"method" : "POST" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
} ,
"body" : {
"name" : "Stripe" ,
"website" : "stripe.com"
}
}
Simple Person Search Simplified person search with pre-defined query parameters.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/simple/search?fullName=John+Doe&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Investments Get investments made into the specified company.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/investments?website=stripe.com&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Outbound Investments Get outbound investments that a company has made.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/investments/outbound?website=stripe.com&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Funds Get funds that a company has raised.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/funds?website=stripe.com&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Acquisitions Get companies acquired by the specified company.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/acquisitions?website=stripe.com&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person Vestings Get vestings of a person.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/vestings?linkedinURL=https://linkedin.com/in/sundarpichai&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person Investments in Companies Get companies that a person has invested in.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/investments/companies?linkedinURL=https://linkedin.com/in/sundarpichai&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person Founded Companies Get companies that a person has founded.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/founded-companies?linkedinURL=https://linkedin.com/in/sundarpichai&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person LinkedIn Posts Get posts from a person's LinkedIn profile.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/social/person/posts?linkedinID=AC123456" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get LinkedIn Post Reactions Get reactions for a LinkedIn post.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/social/post/urn:li:activity:1234567890123456789/reactions?page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get LinkedIn Post Comments Get comments for a LinkedIn post.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/social/post/urn:li:activity:1234567890123456789/comments?page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get LinkedIn Post Reshares Get reshares for a LinkedIn post.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/social/post/urn:li:activity:1234567890123456789/reshares?page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Company Investment Funds Get individual funds that a company has invested in.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/company/investments/funds?website=sequoiacap.com&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Get Person Investment Funds Get funds that a person has invested in.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/person/investments/funds?linkedinURL=https://linkedin.com/in/sundarpichai&page=1&perPage=10" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
Search Locations Search for a location and get geocoded matches.
{
"url" : "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/aviato/geocoder/search?text=San+Francisco" ,
"method" : "GET" ,
"headers" : {
"Content-Type" : "application/json" ,
"x-polymer-pay-api-key" : "{{POLYMER_PAY_API_KEY}}"
}
}
When to Use
Company Research : Enrich company profiles with funding, employees, technology stack
Lead Generation : Find decision makers and their contact information
Market Intelligence : Generate market maps to discover similar companies
Competitor Analysis : Track funding rounds, investments, and acquisitions
Recruiting : Find employees at target companies
Sales Outreach : Identify potential leads with verified contact data
Best Practices
Use Company Enrichment First : Start with /company/enrich to get the Aviato company ID, then use that for related endpoints
DSL for Complex Searches : Use the DSL query language for complex filters rather than simple searches
Preview Mode : Use the preview parameter on enrich endpoints to get minimal info without charging
Pagination : Always implement pagination for endpoints that return lists
Rescrape for Fresh Data : Use rescrape=true to get fresh data if cached data is stale
For errors — See @skills/polymer-pay-api-errors/SKILL.md for complete error code reference and troubleshooting