بنقرة واحدة
semrush
Semrush API for SEO, keyword research, backlinks, domain analytics, traffic, and competitive intelligence. Use when user mentions "Semrush", "SEO", "keyword research", "backlinks", "domain rankings", or "competitive research".
القائمة
Semrush API for SEO, keyword research, backlinks, domain analytics, traffic, and competitive intelligence. Use when user mentions "Semrush", "SEO", "keyword research", "backlinks", "domain rankings", or "competitive research".
استنادا إلى تصنيف SOC المهني
Google Maps Platform API for geocoding, places, routes, and distance matrices. Use when user mentions "Google Maps", "geocode", "directions", "places API", route matrix, or asks to look up an address, route, or place metadata.
A high-fashion editorial video style - cold desaturated grade, dramatic high-contrast light, monumental clean architecture or backdrop, deliberate model pose, strong silhouette, and luxury material texture. Applies to fashion, beauty, luxury, and personal-brand subjects. Trigger on /fashion-editorial, "Fashion Editorial", "luxury fashion campaign", "high fashion video", or "editorial model film".
A hand-drawn fantasy animation video style - painterly 2D backgrounds, expressive simple characters, lush nature, soft diffused light, warm storybook color, and gentle magical wonder. Applies to any fantasy, character, nature, or adventure subject. Trigger on /hand-drawn-fantasy-anime, "hand-drawn fantasy animation", "painterly 2D fantasy", "storybook anime", or "warm forest animation".
A dark luxury product macro video style - premium materials in extreme close-up, black studio, pinpoint specular highlights, ultra-shallow focus, engraved or mechanical detail, and refined reveal pacing. Applies to watches, jewelry, pens, cameras, fragrance caps, and other high-end objects. Trigger on /luxury-product, "Luxury Product", "premium product macro", "dark luxury product video", or "metal detail reveal".
A sports performance advertising video style - athlete effort, gear and body close-ups, impact rhythm, motion blur, Dutch or low angles, high-contrast desaturated grade, and dramatic rim light. Applies to any sport, athlete, training action, or performance product. Trigger on /sports-performance-ad, "sports performance ad", "athletic commercial", "training commercial", or "sports brand film".
Playful-editorial presentation look — saturated colour fields, scalloped sunburst badges and pill chips, oversized stacked headlines. Carnival palette · Archivo + Manrope · pill radius. The design system (visual language).
| name | semrush |
| description | Semrush API for SEO, keyword research, backlinks, domain analytics, traffic, and competitive intelligence. Use when user mentions "Semrush", "SEO", "keyword research", "backlinks", "domain rankings", or "competitive research". |
Use the Semrush API to retrieve SEO, keyword, backlink, traffic, and competitive research data.
Official docs:
https://developer.semrush.com/api/get-started/quick-start/
Use this skill when you need to:
Connect the Semrush connector at app.vm0.ai/connectors.
Troubleshooting: If requests fail, run
zero doctor check-connector --env-name SEMRUSH_TOKENorzero doctor check-connector --url "https://api.semrush.com/?type=domain_rank&domain=example.com&database=us&export_columns=Dn,Rk" --method GET
Replace <domain> with a bare domain such as example.com. The Semrush SEO API
returns CSV for these reports.
curl -s "https://api.semrush.com/?type=domain_rank&key=$SEMRUSH_TOKEN&export_columns=Dn,Rk,Or,Ot,Oc,Ad,At,Ac&domain=<domain>&database=us"
Docs: https://developer.semrush.com/api/seo/overview-reports/
Replace <domain> with a bare domain. display_limit controls the number of
returned rows and helps manage API unit usage.
curl -s "https://api.semrush.com/?type=domain_organic&key=$SEMRUSH_TOKEN&display_limit=10&export_columns=Ph,Po,Pp,Pd,Nq,Cp,Ur,Tr,Tc,Co,Nr,Td&domain=<domain>&display_sort=tr_desc&database=us"
Docs: https://developer.semrush.com/api/seo/domain-reports/
Replace <domain> with a bare domain.
curl -s "https://api.semrush.com/?type=domain_adwords&key=$SEMRUSH_TOKEN&display_limit=10&export_columns=Ph,Po,Pp,Pd,Nq,Cp,Vu,Ur,Tr,Tc,Co,Nr,Td&domain=<domain>&display_sort=tr_desc&database=us"
Docs: https://developer.semrush.com/api/seo/domain-reports/
Replace <domain> with a bare domain.
curl -s "https://api.semrush.com/?type=domain_organic_organic&key=$SEMRUSH_TOKEN&display_limit=10&export_columns=Dn,Cr,Np,Or,Ot,Oc,Ad,At,Ac&domain=<domain>&database=us"
Docs: https://developer.semrush.com/api/seo/domain-reports/
Replace <target-domain> with a bare domain. Use target_type=root_domain for
root-domain-level analysis.
curl -s "https://api.semrush.com/analytics/v1/?type=backlinks_overview&key=$SEMRUSH_TOKEN&target=<target-domain>&target_type=root_domain&export_columns=ascore,total,domains_num,ips_num,follows_num,nofollows_num"
Docs: https://developer.semrush.com/api/seo/backlinks/
Replace <target-domain> with a bare domain.
curl -s "https://api.semrush.com/analytics/v1/?type=backlinks_refdomains&key=$SEMRUSH_TOKEN&target=<target-domain>&target_type=root_domain&display_limit=10&export_columns=domain_ascore,domain,backlinks_num,first_seen,last_seen"
Docs: https://developer.semrush.com/api/seo/backlinks/
display_limit aggressively: Semrush API usage is metered by API units, often per returned line.example.com, not https://example.com, unless an endpoint explicitly accepts URLs.us, uk, de, and other Semrush regional database codes.display_filter or special characters, write the filter to /tmp/query.txt and use --data-urlencode "display_filter@/tmp/query.txt" with curl -G.