> ## 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.

# /pagesjaunes/people/search

> Search PagesJaunes white pages by name, or reverse-lookup a phone number

**Price:** 5 credits per 10 results

**💡 AI Hint:** Search the PagesJaunes white pages (PagesBlanches) for individuals by name with an optional location, or pass a phone number as the query to perform a reverse lookup and find who owns it. Returns name, address, and phone number(s); business entries also include their activity and a link to the full business profile.



## OpenAPI

````yaml /openapi-filtered.json post /api/pagesjaunes/people/search
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/pagesjaunes/people/search:
    post:
      tags:
        - /pagesjaunes
      summary: /pagesjaunes/people/search
      description: >-
        Search PagesJaunes white pages by name, or reverse-lookup a phone number


        **Price:** 5 credits per 10 results


        **💡 AI Hint:** Search the PagesJaunes white pages (PagesBlanches) for
        individuals by name with an optional location, or pass a phone number as
        the query to perform a reverse lookup and find who owns it. Returns
        name, address, and phone number(s); business entries also include their
        activity and a link to the full business profile.
      operationId: __api_pagesjaunes_people_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PagesJaunesPeopleSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PagesJaunesPerson'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PagesJaunesPeopleSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        quoiqui:
          type: string
          minLength: 1
          description: A person's name, or a phone number for reverse lookup
          examples:
            - Martin
            - '0140474000'
        count:
          type: integer
          minimum: 1
          description: Max number of results
        ou:
          anyOf:
            - type: string
            - type: 'null'
          description: 'Where: city or address (optional, ignored for reverse phone lookup)'
        sort:
          $ref: '#/components/schemas/PagesJaunesPeopleSort'
          description: Result ordering
          default: relevance
      type: object
      required:
        - quoiqui
        - count
    PagesJaunesPerson:
      properties:
        '@type':
          type: string
          default: PagesJaunesPerson
        name:
          type: string
        address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
        is_business:
          type: boolean
          default: false
        activity:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PagesJaunesPeopleSort:
      type: string
      enum:
        - relevance
        - az
        - za
    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

````