Skip to content

Porkbun

MetadataValue
Categoryhosting
Capabilitieshttp
Websitehttps://porkbun.com
  • api

Manage domains and DNS records in a Porkbun account.

  1. Open Porkbun API Access
  2. Enable API access for your account
  3. Copy both the API key and secret API key
  4. Store them in AgentOS as a single credential in the format apikey:secretapikey
  • List domains in your Porkbun account
  • List DNS records for a domain
  • Create, update, and delete DNS records
  • Porkbun does not support domain registration through this API
  • This skill is for managing existing domains and DNS only
run({ skill: "porkbun", tool: "list_domains" })
run({
skill: "porkbun",
tool: "list_dns_records",
params: { domain: "example.com" }
})
run({
skill: "porkbun",
tool: "create_dns_record",
params: {
domain: "example.com",
name: "",
type: "A",
content: "185.199.108.153",
ttl: 600
},
execute: true
})