Fastly · Arazzo Workflow

Fastly Verify Domain DNS

Version 1.0.0

Read a domain, then check its DNS configuration and branch on the result.

1 workflow 1 source API 1 provider
View Spec View on GitHub CDNEdge CloudEdge ComputeWebAssemblySecurityArtificial IntelligenceObservabilityAsyncAPIStreamingWebhookLoggingArazzoWorkflows

Provider

fastly

Workflows

verify-domain-dns
Fetch a domain and check whether its DNS points at Fastly.
Retrieves the domain record for a service version and then performs a DNS configuration check, branching on whether the domain is correctly configured.
2 steps inputs: apiToken, domainName, serviceId, versionId outputs: checkResult, domainName
1
getDomain
Retrieve the domain record to confirm it exists on the version.
2
checkDomain
Run Fastly's DNS check for the domain and branch on the result.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fastly Verify Domain DNS
  summary: Read a domain, then check its DNS configuration and branch on the result.
  description: >-
    Confirms that a domain attached to a service version is correctly pointed at
    Fastly. The workflow fetches the domain record and then runs Fastly's DNS
    check, branching to report success when the domain resolves to Fastly and a
    misconfiguration outcome otherwise. Every step spells out its request inline
    so the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: domainApi
  url: ../openapi/fastly-domain-api-openapi.yml
  type: openapi
workflows:
- workflowId: verify-domain-dns
  summary: Fetch a domain and check whether its DNS points at Fastly.
  description: >-
    Retrieves the domain record for a service version and then performs a DNS
    configuration check, branching on whether the domain is correctly
    configured.
  inputs:
    type: object
    required:
    - apiToken
    - serviceId
    - versionId
    - domainName
    properties:
      apiToken:
        type: string
        description: The Fastly API token used to authenticate requests.
      serviceId:
        type: string
        description: The alphanumeric identifier of the service.
      versionId:
        type: integer
        description: The version number that the domain belongs to.
      domainName:
        type: string
        description: The domain name to verify.
  steps:
  - stepId: getDomain
    description: Retrieve the domain record to confirm it exists on the version.
    operationId: getDomain
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: version_id
      in: path
      value: $inputs.versionId
    - name: domain_name
      in: path
      value: $inputs.domainName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      domainName: $response.body#/name
  - stepId: checkDomain
    description: Run Fastly's DNS check for the domain and branch on the result.
    operationId: checkDomain
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: version_id
      in: path
      value: $inputs.versionId
    - name: domain_name
      in: path
      value: $inputs.domainName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      checkResult: $response.body
    onSuccess:
    - name: configured
      type: end
      criteria:
      - context: $response.body
        condition: $[2] == true
        type: jsonpath
    - name: notConfigured
      type: end
      criteria:
      - context: $response.body
        condition: $[2] == false
        type: jsonpath
  outputs:
    domainName: $steps.getDomain.outputs.domainName
    checkResult: $steps.checkDomain.outputs.checkResult

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/fastly-verify-domain-dns-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.