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

# Get Place Info

> Get Place Info



## OpenAPI

````yaml /api-reference/openapi.json get /api/place/info
openapi: 3.1.0
info:
  title: Tikfly API - Unoffical Tiktok API
  description: >-
    Tikfly API Documentation - Unoffical Tiktok API for scalable access without
    the usual limitations
  version: 1.0.0
servers:
  - url: https://tiktok-api23.p.rapidapi.com
    description: RapidAPI
security: []
paths:
  /api/place/info:
    get:
      tags:
        - Place
      summary: Get Place Info
      description: Get Place Info
      operationId: getApiPlaceInfo
      parameters:
        - in: query
          name: placeId
          schema:
            type: string
            pattern: ^\d+$
            description: Place ID
            example: '22535865202704586'
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  poiInfo:
                    type: object
                    properties:
                      poi:
                        type: object
                        properties:
                          address:
                            type: string
                            description: Full address of the place
                            example: California, United States
                          allLevelGeoPoiInfo:
                            type: object
                            description: >-
                              Hierarchical geographic Point of Interest (POI)
                              information for all levels
                            example: {}
                          category:
                            type: string
                            description: Category of the place
                            example: Places
                          city:
                            type: string
                            description: City name where the place is located
                            example: ''
                          cityCode:
                            type: string
                            description: Unique identifier code for the city
                            example: '116023605'
                          country:
                            type: string
                            description: Country name where the place is located
                            example: ''
                          countryCode:
                            type: string
                            description: Unique identifier code for the country
                            example: '6252001'
                          fatherPoiId:
                            type: string
                            description: >-
                              ID of the parent POI, if this place belongs to a
                              larger area
                            example: ''
                          fatherPoiName:
                            type: string
                            description: Name of the parent POI
                            example: ''
                          id:
                            type: string
                            description: Place ID
                            example: '22535865202704586'
                          indexEnabled:
                            type: boolean
                            description: >-
                              Indicates whether this place is indexed and
                              searchable
                            example: true
                          isClaimed:
                            type: boolean
                            description: >-
                              Indicates whether the place has been claimed by
                              the owner
                            example: false
                          isCollected:
                            type: boolean
                            description: ''
                            example: false
                          name:
                            type: string
                            description: Name of the place
                            example: Hollywood
                          phoneInfo:
                            type: object
                            properties:
                              exist:
                                type: boolean
                                description: >-
                                  Indicates whether phone information exists for
                                  the place
                                example: false
                          pictureAlbum:
                            type: object
                            properties:
                              totalCount:
                                type: number
                                description: Total number of pictures in the place’s album
                                example: 0
                          poiDetailTags:
                            type: array
                            items:
                              type: object
                              properties:
                                content:
                                  type: string
                                  description: Tag content describing the place
                                  example: Places
                                tagType:
                                  type: number
                                  description: >-
                                    Numeric code representing the type of the
                                    tag
                                  example: 5
                          province:
                            type: string
                            description: Province or state where the place is located
                            example: ''
                          ttTypeCode:
                            type: string
                            description: Internal TikTok type code for the place
                            example: 19a3a6
                          ttTypeNameMedium:
                            type: string
                            description: Medium-level type name of the place
                            example: Places
                          ttTypeNameSuper:
                            type: string
                            description: Top-level type name of the place
                            example: Place and Address
                          ttTypeNameTiny:
                            type: string
                            description: Smallest-level type name of the place
                            example: Other Places
                          type:
                            type: number
                            description: Numeric type indicator of the place
                            example: 1
                          typeCode:
                            type: string
                            description: >-
                              Optional type code for additional classification
                              of the place
                            example: ''
                      stats:
                        type: object
                        properties:
                          videoCount:
                            type: number
                            description: Total number of videos associated with this place
                            example: 319656
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: >-
        Rapid API Key. [How can I get Rapid API
        Key?](https://docs.tikfly.io/getting-started/quickstart)

````