Skip to main content
GET
/
catchAll
/
projects
/
{project_id}
Get project
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/projects/{project_id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "OK",
  "project_id": "60a85db4-78ec-4b78-876a-bc7d9cdadd04",
  "name": "AI M&A Tracking",
  "description": "Tracks AI-related M&A activity for our investment team.",
  "resources_count": 4,
  "created_at": "2026-05-20T14:31:35Z",
  "updated_at": "2026-05-20T14:31:35Z"
}

Documentation Index

Fetch the complete documentation index at: https://newscatcherinc-docs.mintlify.dev/docs/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication.

Path Parameters

project_id
string<uuid>
required

Unique project identifier.

Response

Project details.

success
boolean
required

True if the operation succeeded; false otherwise.

Example:

true

message
string
required

Human-readable result message.

Example:

"OK"

project_id
string<uuid>
required

Project identifier.

Example:

"60a85db4-78ec-4b78-876a-bc7d9cdadd04"

name
string
required

Project name.

Example:

"AI M&A Tracking"

description
string | null

Project description.

Example:

"Tracks AI-related M&A activity for our investment team."

resources_count
integer
default:0

Number of resources assigned to this project.

Example:

4

created_at
string<date-time>

Project creation timestamp.

Example:

"2026-05-20T14:31:35Z"

updated_at
string<date-time>

Timestamp of the last update.

Example:

"2026-05-20T14:31:35Z"