Rate this page:
GET /1/search
Find what you're looking for in Trello
string
The search query with a length of 1 to 16384 characters
1
, Max length: 16834
oneOf [string, string]
mine
or a comma-separated list of Board IDs
form
string
A comma-separated list of Organization IDs
form
string
A comma-separated list of Card IDs
form
string
What type or types of Trello objects you want to search. all or a comma-separated list of: actions
, boards
, cards
, members
, organizations
all
string
all or a comma-separated list of: closed
, dateLastActivity
, dateLastView
, desc
, descData
, idOrganization
, invitations
, invited
, labelNames
, memberships
, name
, pinned
, powerUps
, prefs
, shortLink
, shortUrl
, starred
, subscribed
, url
form
, Default: name,idOrganization
integer
The maximum number of boards returned. Maximum: 1000
10
, Maximum: 1000
boolean
Whether to include the parent organization with board results
false
string
all or a comma-separated list of: badges
, checkItemStates
, closed
, dateLastActivity
, desc
, descData
, due
, email
, idAttachmentCover
, idBoard
, idChecklists
, idLabels
, idList
, idMembers
, idMembersVoted
, idShort
, labels
, manualCoverAttachment
, name
, pos
, shortLink
, shortUrl
, subscribed
, url
form
, Default: all
integer
The maximum number of cards to return. Maximum: 1000
form
, Default: 10
, Maximum: 1000
number
The page of results for cards. Maximum: 100
0
, Maximum: 100
boolean
Whether to include the parent board with card results
false
boolean
Whether to include the parent list with card results
false
boolean
Whether to include member objects with card results
false
boolean
Whether to include sticker objects with card results
false
string
Whether to include attachment objects with card results. A boolean value (true or false) or cover for only card cover attachments.
false
string
all or a comma-separated list of billableMemberCount, desc, descData, displayName, idBoards, invitations, invited, logoHash, memberships, name, powerUps, prefs, premiumFeatures, products, url, website
name,displayName
integer
The maximum number of Workspaces to return. Maximum 1000
10
, Format: int32
string
all or a comma-separated list of: avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username
avatarHash,fullName,initials,username,confirmed
integer
The maximum number of members to return. Maximum 1000
10
, Format: int32
boolean
By default, Trello searches for each word in your query against exactly matching words within Member content. Specifying partial to be true means that we will look for content that starts with any of the words in your query. If you are looking for a Card titled "My Development Status Report", by default you would need to search for "Development". If you have partial enabled, you will be able to search for "dev" but not "velopment".
false
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/search?query={query}&key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json | Array<oneOf [Member, Card, Board, Organization]> |
GET /1/search/members/
Search for Trello members.
string
Search query 1 to 16384 characters long
1
, Max length: 16394
integer
The maximum number of results to return. Maximum of 20.
8
, Maximum: 20
, Format: int32
string
^[0-9a-fA-F]{24}$
string
^[0-9a-fA-F]{24}$
boolean
false
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/search/members/?query={query}&key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json | Array<Member> |
Rate this page: