/search/uris

POST

Accepts a list of URIs and returns matching results based on provided criteria.

Parameters

Name Type Description
body body Request object containing URIs and optional pagination parameters.

Responses

200: OK

Example value
{
  "type": "object",
  "properties": {
    "count": {
      "description": "The number of matching URIs.",
      "type": "integer",
      "example": 5
    },
    "results": {
      "description": "List of matching URIs.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "/economy/data",
        "/economy/reports"
      ]
    }
  }
}

400: Bad Request - Invalid request format or parameters

Example value
null

500: Internal server error

Example value
null