Sprift · Arazzo Workflow

Sprift — address to shareable property report

Version 1.0.0

Resolve a UK postcode to a UPRN, generate a Sprift property report for it, and create a shareable link to that report.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Real-EstateUnited KingdomPropTechProperty DataProperty ListingsValuationAVMLand RegistryConveyancingRentalsMortgageArazzoWorkflows

Provider

sprift

Workflows

address-to-shareable-report
Postcode → UPRN → generated report → shareable link
3 steps inputs: apiKey, pdf, postcode, reportType outputs: propertyId, shareLink
1
resolve-postcode
Return the addresses and UPRNs for the postcode.
2
generate-report
Generate the Sprift property report for the chosen UPRN. Not idempotent — a retry may create a duplicate report.
3
share-report
Create the shareable, white-labelled link to the generated report.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sprift — address to shareable property report
  version: 1.0.0
  summary: >-
    Resolve a UK postcode to a UPRN, generate a Sprift property report for it, and
    create a shareable link to that report.
  description: >-
    Authored by API Evangelist from Sprift's published Swagger 2.0 contract
    (version 1.3.9, https://sprift.com/dashboard/api-doc/sprift.json). Every
    operationId below exists verbatim in that document. Every operation requires the
    SPRIFT-API-KEY header; keys are issued by Sprift Customer Success to existing
    subscribers, so this workflow cannot be run anonymously and Sprift publishes no
    sandbox or test key. Neither write step is idempotent — the API has no
    Idempotency-Key.
sourceDescriptions:
- name: propertyApi
  url: ../openapi/sprift-property-api-openapi.yml
  type: openapi
- name: searchApi
  url: ../openapi/sprift-search-api-openapi.yml
  type: openapi
- name: shareApi
  url: ../openapi/sprift-share-api-openapi.yml
  type: openapi
workflows:
- workflowId: address-to-shareable-report
  summary: Postcode → UPRN → generated report → shareable link
  inputs:
    type: object
    required:
    - apiKey
    - postcode
    - reportType
    properties:
      apiKey:
        type: string
        description: Sprift API key, sent as the SPRIFT-API-KEY header.
      postcode:
        type: string
        description: UK postcode to resolve, e.g. SW1A 1AA.
      reportType:
        type: integer
        description: >-
          1 = Market Appraisal / Desktop Research, 2 = Appointment Confirmation,
          3 = Key Facts For Buyers, 4 = Property Overview.
      pdf:
        type: boolean
        description: Optional — request a PDF of the generated report.
  steps:
  - stepId: resolve-postcode
    description: Return the addresses and UPRNs for the postcode.
    operationId: $sourceDescriptions.searchApi.SearchPropertiesByPostcode
    parameters:
    - name: SPRIFT-API-KEY
      in: header
      value: $inputs.apiKey
    - name: postcode
      in: path
      value: $inputs.postcode
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matches: $response.body#/data
      total: $response.body#/total
  - stepId: generate-report
    description: >-
      Generate the Sprift property report for the chosen UPRN. Not idempotent — a
      retry may create a duplicate report.
    operationId: $sourceDescriptions.propertyApi.SpriftPropertyReport
    parameters:
    - name: SPRIFT-API-KEY
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        uprn: $steps.resolve-postcode.outputs.matches[0].value
        reportType: $inputs.reportType
        pdf: $inputs.pdf
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      propertyId: $response.body#/propertyDetails/property_id
      estimatedPrice: $response.body#/estimatedPrice
  - stepId: share-report
    description: Create the shareable, white-labelled link to the generated report.
    operationId: $sourceDescriptions.shareApi.ShareReport
    parameters:
    - name: SPRIFT-API-KEY
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        propertyID: $steps.generate-report.outputs.propertyId
        reportType: $inputs.reportType
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      shareLink: $response.body#/share_link
  outputs:
    shareLink: $steps.share-report.outputs.shareLink
    propertyId: $steps.generate-report.outputs.propertyId

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/sprift-property-report"
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.