skills/polymer-pay-ocean/SKILL.md
USE THIS SKILL WHEN: the user wants company and people search, enrichment, and discovery with lookalike matching and B2B intelligence. Provides B2B data via Ocean.io through the Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-oceanInstall 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.
Ocean.io provides B2B data for company and people search, enrichment, lookup, and discovery. Find lookalike companies, enrich contacts, and reveal decision makers through the Polymer Pay proxy.
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/ocean-io
Search for companies using filters (industry, size, location, technologies, revenue).
Pricing: Dynamic
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v3/search/companies",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"size": 50,
"companiesFilters": {
"companySizes": ["51-200", "201-500"],
"industries": {
"industries": ["Software", "SaaS"],
"mode": "anyOf"
},
"primaryLocations": {
"includeCountries": ["US", "GB"]
}
}
}
}
Search for people using job title, seniority, department, and location filters.
Pricing: Dynamic
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v3/search/people",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"size": 50,
"peopleFilters": {
"jobTitleKeywords": {
"anyOf": ["CEO", "CTO", "VP"]
},
"seniorities": ["C-Level", "VP"],
"departments": ["Engineering", "Sales"]
}
}
}
Match and enrich a company with additional information.
Pricing: $0.01
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v2/enrich/company",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"company": {
"domain": "stripe.com",
"name": "Stripe"
},
"fields": ["domain", "companySize", "revenue", "technologies"]
}
}
Match and enrich a person with job title, company, and contact info.
Pricing: $0.01
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v2/enrich/person",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"person": {
"linkedin": "john-doe",
"name": "John Doe",
"jobTitle": "Software Engineer"
}
}
}
Lookup and enrich multiple companies by domain (max 1000).
Pricing: Dynamic
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v2/lookup/companies",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"domains": ["stripe.com", "google.com", "apple.com"],
"fields": ["domain", "companySize", "industries", "revenue"]
}
}
Returns all valid filter values for search endpoints.
Pricing: $0.00
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/x402.orth.sh/ocean-io/v2/data-fields",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
development
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.