Freestyle · Capability

Freestyle Domains API — Verifications

Freestyle Domains API verifications surface. 4 operations. Lead operation: List Domain Verification Requests for an Account. Self-contained Naftiko capability for one Freestyle business surface.

Freestyle Domains API — Verifications is a Naftiko capability published by Freestyle, one of 30 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the GET, PUT, POST, and DELETE methods rooted at /v1/domains/v1/verifications.

The capability includes 1 read-only operation and 3 state-changing operations. Lead operation: List Domain Verification Requests for an Account. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Freestyle, Domains, and Verifications.

Run with Naftiko FreestyleDomainsVerifications

What You Can Do

GET
Handle list domain verification requests — List Domain Verification Requests for an Account
/v1/domains/v1/verifications
PUT
Handle verify domain — Verify a Domain Verification Request
/v1/domains/v1/verifications
POST
Handle create domain verification — Create a Domain Verification Request
/v1/domains/v1/verifications
DELETE
Handle delete domain verification — Delete a Domain Verification Request
/v1/domains/v1/verifications

MCP Tools

freestyle-handle-list-domain-verification-requests

List Domain Verification Requests for an Account

read-only idempotent
freestyle-handle-verify-domain

Verify a Domain Verification Request

idempotent
freestyle-handle-create-domain-verification

Create a Domain Verification Request

freestyle-handle-delete-domain-verification

Delete a Domain Verification Request

idempotent

Capability Spec

domains-verifications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Freestyle Domains API \u2014 Verifications"
  description: 'Freestyle Domains API verifications surface. 4 operations. Lead operation: List Domain Verification Requests
    for an Account. Self-contained Naftiko capability for one Freestyle business surface.'
  tags:
  - Freestyle
  - Domains
  - Verifications
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    FREESTYLE_API_KEY: FREESTYLE_API_KEY
capability:
  consumes:
  - type: http
    namespace: domains-verifications
    baseUri: https://api.freestyle.sh
    description: Freestyle Domains API verifications business capability.
    resources:
    - name: domains-v1-verifications
      path: /domains/v1/verifications
      operations:
      - name: handle-list-domain-verification-requests
        method: GET
        description: List Domain Verification Requests for an Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
      - name: handle-verify-domain
        method: PUT
        description: Verify a Domain Verification Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: handle-create-domain-verification
        method: POST
        description: Create a Domain Verification Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: handle-delete-domain-verification
        method: DELETE
        description: Delete a Domain Verification Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    authentication:
      type: apikey
      key: Authorization
      value: Bearer {{env.FREESTYLE_API_KEY}}
      placement: header
  exposes:
  - type: rest
    namespace: domains-verifications-rest
    port: 8080
    description: REST adapter for Freestyle Domains API verifications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/domains/v1/verifications
      name: domains-v1-verifications
      description: REST surface for domains-v1-verifications.
      operations:
      - method: GET
        name: handle-list-domain-verification-requests
        description: List Domain Verification Requests for an Account
        call: domains-verifications.handle-list-domain-verification-requests
        with: {}
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: handle-verify-domain
        description: Verify a Domain Verification Request
        call: domains-verifications.handle-verify-domain
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: handle-create-domain-verification
        description: Create a Domain Verification Request
        call: domains-verifications.handle-create-domain-verification
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: handle-delete-domain-verification
        description: Delete a Domain Verification Request
        call: domains-verifications.handle-delete-domain-verification
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: domains-verifications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Freestyle Domains API verifications. One tool per consumed operation.
    tools:
    - name: freestyle-handle-list-domain-verification-requests
      description: List Domain Verification Requests for an Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: domains-verifications.handle-list-domain-verification-requests
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: freestyle-handle-verify-domain
      description: Verify a Domain Verification Request
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: domains-verifications.handle-verify-domain
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: freestyle-handle-create-domain-verification
      description: Create a Domain Verification Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: domains-verifications.handle-create-domain-verification
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: freestyle-handle-delete-domain-verification
      description: Delete a Domain Verification Request
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: domains-verifications.handle-delete-domain-verification
      with: {}
      outputParameters:
      - type: object
        mapping: $.