Skip to main content
POST
/
lists
/
investors
Create a new investor list
curl --request POST \
  --url https://app.tryspecter.com/api/v1/lists/investors \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "Top European Seed VCs",
  "investor_ids": [
    "inv_5e3a7f2b0aa7a3270a55f2a7"
  ],
  "is_public": true
}
'
"a1d2434c-e089-480a-8a27-9909d2f558b4"

Documentation Index

Fetch the complete documentation index at: https://api.tryspecter.com/llms.txt

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

Authorizations

X-API-Key
string
header
required

Body

application/json

Name and list of investors to add to the new list

name
string
required

Name of the list to create

Minimum string length: 1
Example:

"Top European Seed VCs"

investor_ids
string[]

Specter investor IDs to add to the list at creation time. Duplicates are deduplicated server-side.

Specter investor ID

is_public
boolean
default:false

Whether the list is shared with other users in the team

Example:

true

Response

The ID of the list that was created

ID of the list

Example:

"a1d2434c-e089-480a-8a27-9909d2f558b4"