Skip to main content
GET
/
lists
Get lists
curl --request GET \
  --url https://inboxapp.com/api/v1/lists \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "icon": "<string>",
      "color": "<string>",
      "description": "Leads scraped from Product Hunt launches",
      "profilesCount": 123,
      "reachableEstimate": 123,
      "reachableCount": 123,
      "columns": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>

Filter by list type. "user" returns manually created lists. "system" returns auto-generated lists (e.g. contacted, mutual). Omit to return all lists.

Available options:
user,
system
Example:

"user"

cursor
string

Pagination cursor. Omit to start from the beginning.

limit
integer
default:50

Maximum number of lists to return per page. Defaults to 50, maximum 100.

Required range: 1 <= x <= 100
Example:

50

Response

200 - application/json

OK

data
object[]
required
nextCursor
string | null
required

Cursor to fetch the next page. Null if there are no more results.