Celebrity API

The Celebrity API provides the most popular information, such as net worth, profession, and birthday, on famous individuals all around the world. Our comprehensive database contains actors/actresses, athletes, politicians, business leaders, and much more.

(4.8)

From 4,930 users

500+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
340ms374ms402ms576ms1031ms

Didn't find what you were looking for? Suggest an improvement


/v1/celebrity GET

https://api.api-ninjas.com/v1/celebrity

Returns a list of up to 30 celebrities that match the search parameters. To get more than 30 results, use the offset parameter.

Parameters

  • name  optional

    Name of the celebrity you wish to search. This field is case-insensitive.

  • min_net_worth  optional

    Minimum net worth of celebrities.

  • max_net_worth  optional

    Maximum net worth of celebrities.

  • nationality  optional

    Nationality of celebrities. Must be an ISO 3166 Alpha-2 country code (e.g. US).

  • min_height  optional

    Minimum height of celebrities in meters (e.g. 1.65).

  • max_height  optional

    Maximum height of celebrities in meters (e.g. 1.80).

  • offset  premium  optional

    Number of results to offset for pagination.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

Returns an array of celebrity objects, each containing:

  • name

    Full name of the celebrity.

  • net_worth

    Net worth in US dollars.

  • gender

    Gender of the celebrity. Possible values: male, female.

  • nationality

    2-letter ISO 3166 Alpha-2 country code.

  • occupation

    Array of occupations.

  • height

    Height in meters.

  • birthday

    Birthday in YYYY-MM-DD format.

Sample Request Live Demo!

name

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/celebrity?name=Michael Jordan

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/celebrity?name=Michael%20Jordan" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.