Skip to content

Commit e098716

Browse files
authored
include links
1 parent 5404152 commit e098716

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

articles/ai-services/content-understanding/quickstart/use-rest-api.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@ To get started, you need **An Active Azure Subscription**. If you don't have an
3535
* [Mac or Linux](https://learn2torials.com/thread/how-to-install-curl-on-mac-or-linux-(ubuntu)-or-windows)
3636

3737

38-
## Get Started with a Prebuilt Analyzer
39-
Analyzers define how your content will be processed and the insights that will be extracted. We offer [pre-built analyzers](link to pre-built analyzer page) for common use cases. You can [customize pre-built analyzers](link to learn how to customize analyzers) to better fit your specific needs and use cases.
38+
## Get Started with a prebuilt analyzer
39+
Analyzers define how your content will be processed and the insights that will be extracted. We offer [pre-built analyzers](link to pre-built analyzer page) for common use cases. You can [customize pre-built analyzers](/how-to/create-a-custom-analyzer) to better fit your specific needs and use cases.
4040
This quickstart uses pre-built document, image, audio, and video analyzers to help you get started.
4141

42-
43-
44-
### Send File for Analysis
45-
#### POST Request
42+
### Send file for analysis
43+
#### POST request
4644

4745
```bash
4846
curl -i -X POST "{endpoint}/analyzers/{analyzerId}:analyze?api-version=2025-05-01-preview" \
@@ -77,7 +75,7 @@ Before running the cURL command, make the following changes to the HTTP request:
7775
---
7876

7977

80-
#### POST Response
78+
#### POST response
8179

8280
The response returns `resultId` that you can use to track the status of this asynchronous analyze operation.
8381

@@ -95,20 +93,20 @@ The response returns `resultId` that you can use to track the status of this asy
9593
}
9694
```
9795

98-
### Get Analyze Result
96+
### Get analyze result
9997

10098
Use the `resultId` from the `POST` response above and retrieve the result of the analysis.
10199

102100
1. Replace `{endpoint}` and `{key}` with the endpoint and key values from your Azure portal Azure AI Services instance.
103101
2. Replace `{resultId}` with the `resultId` from the `POST` response.
104102

105-
#### GET Request
103+
#### GET request
106104
```bash
107105
curl -i -X GET "{endpoint}/contentunderstanding/analyzerResults/{resultId}?api-version=2025-05-01-preview" \
108106
-H "Ocp-Apim-Subscription-Key: {key}"
109107
```
110108

111-
#### GET Response
109+
#### GET response
112110

113111
The 200 (`OK`) JSON response includes a `status` field indicating the status of the operation. If the operation isn't complete, the value of `status` is `running` or `notStarted`. In such cases, you should send the GET request again, either manually or through a script. Wait an interval of one second or more between calls.
114112

@@ -351,6 +349,6 @@ The 200 (`OK`) JSON response includes a `status` field indicating the status of
351349

352350
## Next steps
353351

354-
* In this quickstart, you learned how to call the [REST API](REFERENCE LINK) using a pre-built analyzer. See how you can [customize pre-built analyzers](LINK TO CUSTOMIZATION) to better fit your use case.
352+
* In this quickstart, you learned how to call the [REST API](/rest/api/contentunderstanding/content-analyzers/analyze?view=rest-contentunderstanding-2025-05-01-preview) using a pre-built analyzer. See how you can [create a custom analyzer](/how-to/create-a-custom-analyzer) to better fit your use case.
355353

356354

0 commit comments

Comments
 (0)