GET /discovery
This endpoint returns a list of all URL discovery jobs that have been initiated by the authenticated user.
Query Parameters
Filter by status: pending, processing, completed, or failed.
Number of results per page (max 100).
Response
An array of discovery job objects.
The unique identifier for the discovery job.
The target URL for the discovery.
Discovery method: full, sitemap, or crawl.
Current status of the job.
Number of URLs discovered.
ISO 8601 timestamp of job creation.
Total number of discovery jobs.
curl -X GET https://api.llmgenerator.com/api/v1/discovery \
-H "Authorization: Bearer YOUR_API_KEY"
{
"jobs": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://example.com",
"type": "full",
"status": "completed",
"urlsFound": 47,
"createdAt": "2026-01-20T10:00:00.000Z"
},
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"url": "https://another-example.com",
"type": "sitemap",
"status": "processing",
"urlsFound": 12,
"createdAt": "2026-01-21T11:00:00.000Z"
}
],
"total": 2
}