Retrieve a list of all projects accessible to the authenticated user.
Get project metadata including name, creation date, and configuration. Use this to list available projects before querying project-specific reports.
Use cases:
curl --request POST \
--url https://api.writesonic.com/v2/geo/business/projects \
--header 'X-API-KEY: <api-key>'{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}curl --request POST \
--url https://api.writesonic.com/v2/geo/business/projects \
--header 'X-API-KEY: <api-key>'{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}