Porkbun
| Metadata | Value |
|---|---|
| Category | hosting |
| Capabilities | http |
| Website | https://porkbun.com |
Returns shapes
Section titled “Returns shapes”dns_record[]— fromlist_dns_recordsdomain[]— fromlist_domains
Connections
Section titled “Connections”api
Readme
Section titled “Readme”Manage domains and DNS records in a Porkbun account.
- Open Porkbun API Access
- Enable API access for your account
- Copy both the API key and secret API key
- Store them in AgentOS as a single credential in the format
apikey:secretapikey
What It Covers
Section titled “What It Covers”- List domains in your Porkbun account
- List DNS records for a domain
- Create, update, and delete DNS records
Limitations
Section titled “Limitations”- Porkbun does not support domain registration through this API
- This skill is for managing existing domains and DNS only
Example Calls
Section titled “Example Calls”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})