- Newest
- Most votes
- Most comments
Have you taken a look at this document - https://docs.aws.amazon.com/textract/latest/dg/API_Reference.html
The section https://docs.aws.amazon.com/textract/latest/dg/API_Operations.html describes the request and response structures for each of the APIs.
You pass in the request syntax JSON as the request. But you have to authenticate (sign it: https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html), that is the harder part.
So you are telling me I can do all operions with single endpoint. And they are different only by paremeters passed in JSON in request? If it's true, it was the answer for my question
each service has their own endpoints, Textract is this one: https://docs.aws.amazon.com/general/latest/gr/textract.html
Here is the page that shows a full list of endpoints used for each service per region. Here is a direct link to textract specifically:
Relevant content
- asked 6 months ago
- asked 2 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago
Yes, but you can use it only with SDK or AWS CLI. I was curious if I could use AWS Textract using endpoints. This is example of Microsoft Form Recognizer: https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v2-1-preview-3/operations/AnalyzeBusinessCardAsync
and you can find there endpoints (request URL): https://{endpoint}/formrecognizer/v2.1-preview.3/prebuilt/businessCard/analyze[?includeTextDetails][&locale][&pages]
So AWS doesn't provide this? Because I haven't found docs for this
Here are the endpoints for Textract - https://docs.aws.amazon.com/general/latest/gr/textract.html
Is there any documentation how to use mentioned endpoint from https://docs.aws.amazon.com/general/latest/gr/textract.html ? Because if it's not enough documented, how could I know how to use it? Let's say what parameters, request type, queries etc is accepted for analyzing document and other operations
Thank you