Skip to main content
POST
/
catchAll
/
projects
Create project
curl --request POST \
  --url https://catchall.newscatcherapi.com/catchAll/projects \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "AI M&A Tracking",
  "description": "Tracks AI-related M&A activity for our investment team."
}
'
{
  "success": true,
  "message": "Project created successfully.",
  "project_id": "60a85db4-78ec-4b78-876a-bc7d9cdadd04",
  "name": "AI M&A Tracking"
}

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.

Body

application/json
name
string
required

Name for the project.

Minimum string length: 1
Example:

"AI M&A Tracking"

description
string

Optional description.

Example:

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

Response

Project created successfully.

success
boolean
required

True if the operation succeeded; false otherwise.

Example:

true

message
string
required

Human-readable result message.

Example:

"Project created successfully."

project_id
string<uuid>
required

Project identifier.

Example:

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

name
string
required

Name of the created project.

Example:

"AI M&A Tracking"