View as Markdown
Taggun icon

Taggun ACTION

Extract Data from URL

Provide a URL for a receipt or invoice to extract clear and basic data. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Taggun account once, then configure and run Extract Data from URL from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "taggun-extract-data-from-url",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taggun: { authProvisionId: "apn_xxxxxxx" },
    url: "URL",
    referenceId: "Reference ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Extract Data from URL inputs
Property Type Description
url URL string
Image URL to process
Required
referenceId Reference ID string
Custom reference ID for tracking the request
Optional
refresh Refresh boolean
Force reprocessing of the image instead of using cached results
Optional
near Near string
Provide a nearby location to improve result accuracy
Optional
language Language string
Preferred language for extracted text
Optional
incognito Incognito boolean
Do not store or use the image for system training
Optional
verbose Verbose boolean
Whether the data extraction will be simple or verbose
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
taggun-extract-data-from-url
Version
0.0.1
App
Taggun
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes