skills/polymer-pay-aviato/SKILL.md
Company and person intelligence platform with funding rounds, investments, employees, founders, LinkedIn social data, and market maps. Access via Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-aviatoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
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.
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 for companies using Aviato's DSL query language.
Pricing: $0.02
{
"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
}
}
}
Enrich a person with full profile details using any identifier.
Pricing: $0.03
{
"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 for people using Aviato's DSL query language.
Pricing: $0.02
{
"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
}
}
}
Retrieve all funding rounds for a company.
Pricing: $0.08
{
"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}}"
}
}
Retrieve employees of a company with pagination.
Pricing: $0.02
{
"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}}"
}
}
Retrieve email addresses for a person.
Pricing: $0.04
{
"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}}"
}
}
Retrieve founders of a company.
Pricing: $0.02
{
"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}}"
}
}
Retrieve posts from a company's LinkedIn page.
Pricing: $0.08
{
"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 a market map to find similar companies.
Pricing: $0.20
{
"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"
}
}
Simplified person search with pre-defined query parameters.
Pricing: $0.02
{
"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 investments made into the specified company.
Pricing: $0.04
{
"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 that a company has made.
Pricing: $0.04
{
"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 funds that a company has raised.
Pricing: $0.08
{
"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 companies acquired by the specified company.
Pricing: $0.12
{
"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 vestings of a person.
Pricing: $0.16
{
"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 companies that a person has invested in.
Pricing: $0.02
{
"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 companies that a person has founded.
Pricing: $0.02
{
"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 posts from a person's LinkedIn profile.
Pricing: $0.08
{
"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 reactions for a LinkedIn post.
Pricing: $0.08
{
"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 comments for a LinkedIn post.
Pricing: $0.08
{
"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 reshares for a LinkedIn post.
Pricing: $0.08
{
"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 individual funds that a company has invested in.
Pricing: $0.04
{
"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 funds that a person has invested in.
Pricing: $0.02
{
"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 for a location and get geocoded matches.
Pricing: $0.01
{
"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}}"
}
}
/company/enrich to get the Aviato company ID, then use that for related endpointspreview parameter on enrich endpoints to get minimal info without chargingrescrape=true to get fresh data if cached data is staledevelopment
USE THIS SKILL WHEN: the user wants to use Z.ai's GLM models for chat, translation, image generation, video generation, or web search. Z.ai provides GLM-4.5 and GLM-4.6 with advanced reasoning and agentic capabilities.
development
USE THIS SKILL WHEN: the user wants a quick single-page scrape to markdown or a webpage screenshot. Provides lightweight web scraping and screenshots via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants to generate AI images with FLUX models or create text-in-image with Ideogram. Provides pay-per-use image generation via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants wallet balances, transactions, PnL, ENS resolution, token prices, or transaction simulation. Provides pay-per-use blockchain operations via x402engine through the Polymer Pay proxy.