Generated API
Generated OCR API
Quick-Start
using Mindee;
using Mindee.Input;
using Mindee.Http;
using Mindee.Product.Generated;
string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";
// Construct a new client
MindeeClient mindeeClient = new MindeeClient(apiKey);
// Load an input source as a path string
// Other input types can be used, as mentioned in the docs
var inputSource = new LocalInputSource(filePath);
// Set the endpoint configuration
CustomEndpoint endpoint = new CustomEndpoint(
endpointName: "my-endpoint",
accountName: "my-account",
version: "my-version"
);
// Call the product asynchronously with auto-polling
var response = await mindeeClient
.EnqueueAndParseAsync<GeneratedV1>(inputSource, endpoint);
// Print a summary of all the predictions
System.Console.WriteLine(response.Document.ToString());
// Print only the document-level predictions
// System.Console.WriteLine(response.Document.Inference.Prediction.ToString());Generated Endpoints
Field Types
Generated Fields
Generated Feature
Generated Object Field
Last updated
Was this helpful?

