Azure AI Foundry, Content Understanding returning "Not Found"

Garin Evans 0 Reputation points
2025-11-12T16:11:58.52+00:00

I have an Azure AI Foundry project setup in West US with a Content Understanding service running which I am using to scrape products from HTML pages. This has been working absolutely fine until last week when it suddenly started returning "Not Found" as per the screenshot below. It seems it is still finding the correct number of Products because the table count is 9, but the fields are all blank.

User's image

Interrogating the raw response shows the array is returned with each field's type, but no value

{
	"id": "5fc3798b-8f81-46b6-a92a-f31583399bbc",
	"status": "Succeeded",
	"result": {
		"analyzerId": "auto-labeling-model-1762962853246-223",
		"apiVersion": "2025-05-01-preview",
		"createdAt": "2025-11-12T15:54:16Z",
		"warnings": [],
		"contents": [
			{
				"markdown": "removed for brevity",
				"fields": {
					"Products": {
						"type": "array",
						"valueArray": [
							{
								"type": "object",
								"valueObject": {
									"Title": {
										"type": "string"
									},
									"SubTitle": {
										"type": "string"
									},
									"Description": {
										"type": "string"
									},
									"ImageURL": {
										"type": "string"
									}
								}
							}
						]
					}
				},
				"kind": "document",
				"startPageNumber": 1,
				"endPageNumber": 1
			}
		]
	},
	"usage": {
		"tokens": {
			"contextualization": 0.08,
			"input": 64371,
			"output": 892
		}
	}
}


This was working and returning values absolutely fine until it suddenly stopped last week with zero changes to the schema definitions or anything else in the project. I appreciate Content Understanding is in Preview but I can't find any active issues with it.

Any ideas?

Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.