> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /imdb/names

> Get full IMDb person details by ID or URL: name, birth name, nicknames, birth/death dates and places, height, biography, photo, popularity rank, professions, awards summary, known-for titles and spouses.

**Price:** 1 credit

**⚠️ Common errors:** 412: Person not found (well-formed but nonexistent IMDb person ID)



## OpenAPI

````yaml /openapi/movies-tv.json post /api/imdb/names
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/imdb/names:
    post:
      tags:
        - /imdb
      summary: /imdb/names
      description: >-
        Get full IMDb person details by ID or URL: name, birth name, nicknames,
        birth/death dates and places, height, biography, photo, popularity rank,
        professions, awards summary, known-for titles and spouses.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Person not found (well-formed but nonexistent
        IMDb person ID)
      operationId: __api_imdb_names_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImdbNamesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImdbName'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImdbNamesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        name:
          type: string
          minLength: 1
        country:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ImdbName:
      properties:
        '@type':
          type: string
          default: ImdbName
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        birth_name:
          anyOf:
            - type: string
            - type: 'null'
        nicknames:
          items:
            type: string
          type: array
          default: []
        birth_date:
          anyOf:
            - type: string
            - type: 'null'
        death_date:
          anyOf:
            - type: string
            - type: 'null'
        death_cause:
          anyOf:
            - type: string
            - type: 'null'
        birth_location:
          anyOf:
            - type: string
            - type: 'null'
        death_location:
          anyOf:
            - type: string
            - type: 'null'
        height_cm:
          anyOf:
            - type: number
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        meter_rank:
          anyOf:
            - type: integer
            - type: 'null'
        professions:
          items:
            type: string
          type: array
          default: []
        award_summary:
          anyOf:
            - $ref: '#/components/schemas/ImdbAwardSummary'
            - type: 'null'
        known_for:
          items:
            $ref: '#/components/schemas/ImdbTitleRef'
          type: array
          default: []
        spouses:
          items:
            $ref: '#/components/schemas/ImdbSpouse'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImdbAwardSummary:
      properties:
        '@type':
          type: string
          default: ImdbAwardSummary
        name:
          anyOf:
            - type: string
            - type: 'null'
        wins:
          anyOf:
            - type: integer
            - type: 'null'
        nominations:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    ImdbTitleRef:
      properties:
        '@type':
          type: string
          default: ImdbTitleRef
        id:
          type: string
        title_text:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        type_id:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - title_text
    ImdbSpouse:
      properties:
        '@type':
          type: string
          default: ImdbSpouse
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_id:
          anyOf:
            - type: string
            - type: 'null'
        current:
          type: boolean
          default: false
        attributes:
          items:
            type: string
          type: array
          default: []
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````