Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/firecrawl/firecrawl/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

GET /v1/llmstxt/{id}

Authentication

This endpoint requires authentication using a Bearer token. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required
The ID of the LLMs.txt generation job

Response

success
boolean
Indicates whether the request was successful
status
string
The current status of the generation job. Can be processing, completed, or failed.
data
object
The generated LLMs.txt data. Only present when status is completed.
expiresAt
string
When the generated content will expire (ISO 8601 format)

Examples

curl -X GET https://api.firecrawl.dev/v1/llmstxt/123e4567-e89b-12d3-a456-426614174000 \
  -H 'Authorization: Bearer YOUR_API_KEY'

Response Example

{
  "success": true,
  "status": "completed",
  "data": {
    "llmstxt": "# Example Site\n\n> A brief description of the site...\n\n## Main Content\n...",
    "llmsfulltxt": "Full text content here..."
  },
  "expiresAt": "2026-03-10T12:00:00Z"
}

Error Responses

404
object
Not Found - LLMs.txt generation job not found.
{
  "success": false,
  "error": "LLMs.txt generation job not found"
}