When --dry-run is passed, each CLI prints the HTTP request it would make (method, URL, headers, body) without actually calling fetch(). Auth credentials are masked as "***" in the output. Useful for verifying request shape and API endpoints without needing real API keys or making actual API calls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
201 lines
5.8 KiB
JavaScript
Executable file
201 lines
5.8 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
const API_KEY = process.env.SEMRUSH_API_KEY
|
|
const BASE_URL = 'https://api.semrush.com/'
|
|
|
|
if (!API_KEY) {
|
|
console.error(JSON.stringify({ error: 'SEMRUSH_API_KEY environment variable required' }))
|
|
process.exit(1)
|
|
}
|
|
|
|
function parseCSV(text) {
|
|
const lines = text.trim().split('\n')
|
|
if (lines.length < 2) return []
|
|
const headers = lines[0].split(';')
|
|
const rows = []
|
|
for (let i = 1; i < lines.length; i++) {
|
|
if (!lines[i].trim()) continue
|
|
const values = lines[i].split(';')
|
|
const row = {}
|
|
for (let j = 0; j < headers.length; j++) {
|
|
row[headers[j]] = values[j] || ''
|
|
}
|
|
rows.push(row)
|
|
}
|
|
return rows
|
|
}
|
|
|
|
async function api(params) {
|
|
params.set('key', API_KEY)
|
|
params.set('export_escape', '1')
|
|
if (args['dry-run']) {
|
|
const maskedParams = new URLSearchParams(params)
|
|
maskedParams.set('key', '***')
|
|
return { _dry_run: true, method: 'GET', url: `${BASE_URL}?${maskedParams}`, headers: {}, body: undefined }
|
|
}
|
|
const res = await fetch(`${BASE_URL}?${params}`)
|
|
const text = await res.text()
|
|
if (!res.ok) {
|
|
return { error: text.trim(), status: res.status }
|
|
}
|
|
if (text.startsWith('ERROR')) {
|
|
return { error: text.trim() }
|
|
}
|
|
return parseCSV(text)
|
|
}
|
|
|
|
function parseArgs(args) {
|
|
const result = { _: [] }
|
|
for (let i = 0; i < args.length; i++) {
|
|
const arg = args[i]
|
|
if (arg.startsWith('--')) {
|
|
const key = arg.slice(2)
|
|
const next = args[i + 1]
|
|
if (next && !next.startsWith('--')) {
|
|
result[key] = next
|
|
i++
|
|
} else {
|
|
result[key] = true
|
|
}
|
|
} else {
|
|
result._.push(arg)
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
const args = parseArgs(process.argv.slice(2))
|
|
const [cmd, sub, ...rest] = args._
|
|
|
|
async function main() {
|
|
let result
|
|
const database = args.database || 'us'
|
|
|
|
switch (cmd) {
|
|
case 'domain':
|
|
switch (sub) {
|
|
case 'overview': {
|
|
const params = new URLSearchParams({
|
|
type: 'domain_ranks',
|
|
export_columns: 'Db,Dn,Rk,Or,Ot,Oc,Ad,At,Ac',
|
|
domain: args.domain,
|
|
})
|
|
result = await api(params)
|
|
break
|
|
}
|
|
case 'organic': {
|
|
const params = new URLSearchParams({
|
|
type: 'domain_organic',
|
|
export_columns: 'Ph,Po,Pp,Pd,Nq,Cp,Ur,Tr,Tc,Co,Nr',
|
|
domain: args.domain,
|
|
database,
|
|
})
|
|
if (args.limit) params.set('display_limit', args.limit)
|
|
result = await api(params)
|
|
break
|
|
}
|
|
case 'competitors': {
|
|
const params = new URLSearchParams({
|
|
type: 'domain_organic_organic',
|
|
export_columns: 'Dn,Cr,Np,Or,Ot,Oc,Ad',
|
|
domain: args.domain,
|
|
database,
|
|
})
|
|
if (args.limit) params.set('display_limit', args.limit)
|
|
result = await api(params)
|
|
break
|
|
}
|
|
default:
|
|
result = { error: 'Unknown domain subcommand. Use: overview, organic, competitors' }
|
|
}
|
|
break
|
|
|
|
case 'keywords':
|
|
switch (sub) {
|
|
case 'overview': {
|
|
const params = new URLSearchParams({
|
|
type: 'phrase_all',
|
|
export_columns: 'Ph,Nq,Cp,Co,Nr',
|
|
phrase: args.phrase,
|
|
database,
|
|
})
|
|
result = await api(params)
|
|
break
|
|
}
|
|
case 'related': {
|
|
const params = new URLSearchParams({
|
|
type: 'phrase_related',
|
|
export_columns: 'Ph,Nq,Cp,Co,Nr,Td',
|
|
phrase: args.phrase,
|
|
database,
|
|
})
|
|
if (args.limit) params.set('display_limit', args.limit)
|
|
result = await api(params)
|
|
break
|
|
}
|
|
case 'difficulty': {
|
|
const params = new URLSearchParams({
|
|
type: 'phrase_kdi',
|
|
export_columns: 'Ph,Kd',
|
|
phrase: args.phrase,
|
|
database,
|
|
})
|
|
result = await api(params)
|
|
break
|
|
}
|
|
default:
|
|
result = { error: 'Unknown keywords subcommand. Use: overview, related, difficulty' }
|
|
}
|
|
break
|
|
|
|
case 'backlinks':
|
|
switch (sub) {
|
|
case 'overview': {
|
|
const params = new URLSearchParams({
|
|
type: 'backlinks_overview',
|
|
target: args.target,
|
|
target_type: 'root_domain',
|
|
})
|
|
result = await api(params)
|
|
break
|
|
}
|
|
case 'list': {
|
|
const params = new URLSearchParams({
|
|
type: 'backlinks',
|
|
target: args.target,
|
|
target_type: 'root_domain',
|
|
export_columns: 'source_url,source_title,target_url,anchor',
|
|
})
|
|
if (args.limit) params.set('display_limit', args.limit)
|
|
result = await api(params)
|
|
break
|
|
}
|
|
default:
|
|
result = { error: 'Unknown backlinks subcommand. Use: overview, list' }
|
|
}
|
|
break
|
|
|
|
default:
|
|
result = {
|
|
error: 'Unknown command',
|
|
usage: {
|
|
'domain overview': 'domain overview --domain <domain>',
|
|
'domain organic': 'domain organic --domain <domain> [--database <db>] [--limit <n>]',
|
|
'domain competitors': 'domain competitors --domain <domain> [--database <db>] [--limit <n>]',
|
|
'keywords overview': 'keywords overview --phrase <phrase> [--database <db>]',
|
|
'keywords related': 'keywords related --phrase <phrase> [--database <db>] [--limit <n>]',
|
|
'keywords difficulty': 'keywords difficulty --phrase <phrase> [--database <db>]',
|
|
'backlinks overview': 'backlinks overview --target <domain>',
|
|
'backlinks list': 'backlinks list --target <domain> [--limit <n>]',
|
|
'databases': 'us (default), uk, de, fr, ca, au, etc.',
|
|
}
|
|
}
|
|
}
|
|
|
|
console.log(JSON.stringify(result, null, 2))
|
|
}
|
|
|
|
main().catch(err => {
|
|
console.error(JSON.stringify({ error: err.message }))
|
|
process.exit(1)
|
|
})
|