The Flash Loader endpoint allows you to run quick, single-purpose LLM workflows via HTTP requests. This is ideal for fast, simple checks that don’t require full case processing, such as document validation or classification.

Overview

Flash Loader provides:

  • Instant results without job queuing
  • Simplified request/response format
  • Optimized for specific use cases
  • Lower latency than full case processing

Making a Request

Endpoint

POST https://demo.parcha.ai/api/v1/flashLoader

Request Structure

Request Parameters

agent_key
string
required

The specific agent key for the Flash Loader workflow. Currently supported: “-doc-flash-v1”

check_id
string
required

The identifier for the specific check to run. Currently supported: “kyb.incorporation_document_classification_tool”

kyb_schema
object
required

The KYB data schema containing business and document information

Response Structure

{
    "elapsed_time": 2.898879696000222,
    "result": {
        "passed": false,
        "answer": "The document is a children's puzzle, not a business registration."
    }
}
elapsed_time
number

Time taken to process the request in seconds

result
object

The result of the Flash Loader check

Use Cases

Flash Loader is ideal for:

  • Quick document validation
  • Real-time document classification
  • Simple compliance checks
  • Pre-submission validation