Sherlock Domains

Sherlock Domains

fewsats

Search for available domain names, purchase them, and manage DNS records through the Sherlock Domains API. Handles ICANN registration requirements and authentication automatically.

1330 views5Local (stdio)

What it does

  • Search for available domain names with pricing
  • Purchase domains with automated ICANN registration
  • Manage DNS records (create, update, delete)
  • Set contact information for domain registration
  • List owned domains
  • Configure DNS settings for domains

Best for

Developers building web applications who need domainsAI agents that need to automatically acquire web presenceAutomating domain portfolio managementSetting up DNS for new projects
Handles ICANN compliance automaticallyFull domain lifecycle managementDNS configuration included

Tools (10)

search

Search for available domains matching the query. Returns search results with available/unavailable domains, their prices in USD cents, and a search ID needed for purchase requests. The query can be a full domain name with or without the TLD but not subdomains or text. Valid queries: - "example" - "example.com" - "my-domain" Invalid queries: - "www.example.com" # no subdomains - "this is a search" # no spaces - "sub.domain.com" # no subdomains

claim_account

Links an email address to an AI agent's account for web interface access and account recovery. Important notes: - Only accounts without an existing email can be linked - Each email can only be linked to one account - This method is rarely needed since emails are also set during domain registration

set_contact_information

Set the contact information that will be used for domain purchases and ICANN registration. Contact information must be set before attempting any domain purchases. All fields are required: first_name: First name last_name: Last name email: Email address address: Street address city: City state: Two-letter state code for US/Canada (e.g., 'CA', 'NY') or province name (e.g., 'Madrid') postal_code: Postal code country: Two-letter country code ('US', 'ES', 'FR')

get_contact_information

Retrieve the currently configured contact information that will be used for domain purchases and ICANN registration.

get_purchase_offers

Request available payment options for a domain. This method returns an L402 offer, which includes details such as offer_id, amount, currency, and more. The returned offer can be processed by any tool supporting L402 offers. The TLD .ai mandates a minimum registration and renewal period of two years. So inform the user that they need to purchase a 2 year package when they request a .ai domain. The L402 offer structure: { 'offers': [ { 'offer_id': 'example_offer_id', # String identifier for the offer 'amount': 100, # Numeric cost value in USD cents 'currency': 'usd', # Currency code 'description': 'Example offer', # Text description 'title': 'Example Package' # Title of the package } ], 'payment_context_token': 'example_token', # Payment context token 'payment_request_url': 'https://api.example.com/payment-request', # Payment URL 'version': '0.2.2' # API version } sid: Search ID from a previous search request domain: Domain name to purchase from the search results related to `sid`

Alternatives