AgentQL · Schema

ResponseMetadata

Metadata about the API response.

AgentsArtificial IntelligenceWeb ScrapingData ExtractionBrowser AutomationREST API

Properties

Name Type Description
request_id string Unique identifier for this API request.
response_time_ms integer Time taken to complete the request in milliseconds.
View JSON Schema on GitHub

JSON Schema

agentql-response-metadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agentql/refs/heads/main/json-schema/agentql-response-metadata-schema.json",
  "title": "ResponseMetadata",
  "description": "Metadata about the API response.",
  "type": "object",
  "properties": {
    "request_id": {
      "type": "string",
      "description": "Unique identifier for this API request.",
      "example": "req-a1b2c3d4"
    },
    "response_time_ms": {
      "type": "integer",
      "description": "Time taken to complete the request in milliseconds.",
      "example": 1847
    }
  }
}