Skip to main content
GET
/
v1
/
entities
/
search
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/entities/search?limit=25&q=%3Cq%3E"
{
  "data": [
    {
      "mentions": {
        "news_articles": 123,
        "podcast_episodes": 123
      },
      "company": {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "domain": "<string>",
        "image_url": "<string>",
        "slug": "<string>",
        "ticker": "<string>"
      },
      "knowledge_graph_entity": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "company": {
          "id": "<string>",
          "domain": "<string>",
          "ticker": "<string>"
        },
        "description": "<string>",
        "image_url": "<string>",
        "person": {
          "id": "<string>",
          "company": "<string>",
          "image_url": "<string>",
          "title": "<string>"
        },
        "type": {
          "name": "<string>",
          "slug": "<string>"
        },
        "wikipedia_url": "<string>"
      },
      "person": {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "image_url": "<string>",
        "slug": "<string>"
      },
      "social_links": [
        {
          "platform": "<string>",
          "url": "<string>",
          "followers": 123
        }
      ]
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Query Parameters

limit
integer<int64>
default:25

Results per page

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

q
string
required

Free-text query: a name, partial name, nickname, stock ticker, @handle, or website domain (e.g. 'sam altman', 'coca cola', 'AAPL', '@sama', 'apple.com').

Minimum string length: 1
type
enum<string>

Restrict results to one kind. Omit to search people, companies, and knowledge graph entities together.

Available options:
person,
company,
knowledge_graph_entity

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results