Skip to main content
GET
/
projects
List your projects
curl --request GET \
  --url https://openlens.com/api/projects \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "url": "<string>",
    "location": "<string>",
    "languages": "<string>",
    "activePlatforms": [],
    "createdAt": "2023-11-07T05:31:56Z",
    "ownBrandName": "<string>",
    "ownBrandUrl": "<string>",
    "lastRunAt": "2023-11-07T05:31:56Z",
    "lastRunStatus": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.openlens.com/llms.txt

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

Authorizations

Authorization
string
header
required

Clerk API key. Create one from your account settings under API Keys.

Response

Successful response

id
string<uuid>
required
name
string
required
url
string | null
location
string | null
languages
string | null
activePlatforms
enum<string>[]

LLM platform identifier. Newer scraper-backed ids end in _app; chatgpt, perplexity, and gemini are legacy and not returned by current runs.

Available options:
chatgpt,
chatgpt_app,
claude,
gemini,
gemini_app,
grok_app,
perplexity,
perplexity_app,
google_app,
deepseek
createdAt
string<date-time>
ownBrandName
string | null
ownBrandUrl
string | null
lastRunAt
string<date-time> | null
lastRunStatus
string | null