Skip to main content
POST
/
v2
/
add
/
website
Add a website
curl --request POST \
  --url https://context7.com/api/v2/add/website \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "websiteUrl": "https://docs.example.com"
}
'
{
  "libraryName": "/owner/repo",
  "message": "Repository submitted successfully"
}

Authorizations

Authorization
string
header
required

Get your API key at context7.com/dashboard. Treat your API key like a password and store it securely.

Body

application/json
websiteUrl
string<uri>
required

The website URL to process

websiteBaseUrl
string<uri>

Base URL to limit crawling scope. Only pages starting with this URL will be indexed.

Response

Library submitted successfully for processing

Response after successfully submitting a library

libraryName
string
required

The library identifier assigned (e.g., /owner/repo)

message
string
required

Human-readable success message