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

# Get Account IQ (Sales Nav)

> - Get company account IQ from Linkedin sales navigator. 

 - 5 credits per call.



## OpenAPI

````yaml GET /get-account-iq
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://web-scraping-api2.p.rapidapi.com
security:
  - ApiKeyAuth: []
paths:
  /get-account-iq:
    get:
      description: |-
        - Get company account IQ from Linkedin sales navigator. 

         - 5 credits per call.
      parameters:
        - name: linkedin_url
          in: query
          description: ''
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountIQ'
        '400':
          description: Invalid linkedin URL.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidURL'
        '404':
          description: Profile not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileNotFound'
        '503':
          description: System error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    AccountIQ:
      type: object
      properties:
        message:
          type: string
          example: ok
        data:
          type: object
          properties:
            Business challenges:
              type: string
              example:
                Expansion Risks: >-
                  Amazon's expansion into new products, services, technologies,
                  and geographic regions subjects it to additional risks,
                  including technology challenges, customer adoption issues, and
                  potential failure to recoup investments.
                Intense Competition: >-
                  Amazon faces intense competition across various industries,
                  including e-commerce, cloud services, and digital content,
                  which may require increased spending or lower prices,
                  potentially reducing sales and profits.
                Navigating Economic Challenges: >-
                  Amazon faces economic challenges that impact its strategic
                  growth initiatives and stock outlook.
            Competitive landscape:
              type: string
              example:
                competitors:
                  - industry: Retail
                    link: https://www.linkedin.com/company/walmart/
                    name: Walmart
                  - industry: Software Development
                    link: https://www.linkedin.com/company/chinese-alibaba-group/
                    name: Alibaba Group
                  - industry: Internet Publishing
                    link: https://www.linkedin.com/company/ebay/
                    name: eBay
                description: >-
                  Amazon.com operates in a highly competitive landscape across
                  multiple sectors including e-commerce, cloud computing,
                  digital streaming, and artificial intelligence. Key
                  competitors in the e-commerce space include Walmart, Alibaba,
                  and eBay, each offering unique value propositions and
                  targeting different market segments. Amazon's competitive
                  strategy focuses on technological innovation, customer-centric
                  solutions, and expanding its ecosystem through services like
                  Amazon Prime and AWS.
            Decision makers:
              type: array
              items:
                type: object
              example:
                - headline: marketing digital
                  linkedin_url: >-
                    https://www.linkedin.com/in/ACoAADb-yQ8BDpm26lZnutUfG5LG3aqoFjYeOtk
                  name: Dembare T
            Estimated revenue:
              type: string
              example:
                recent_Q:
                  Q: Q2 2024
                  revenue: $148B
                recent_year:
                  revenue: $574.8B
                  year: '2023'
            Headcount insights:
              type: string
              example: null
            How the company makes money:
              type: string
              example: >-
                Amazon makes money through a diverse range of revenue streams
                including online and physical retail sales, subscription
                services like Amazon Prime, and its cloud computing division,
                Amazon Web Services (AWS). Their target market includes
                consumers, sellers, developers, enterprises, content creators,
                and advertisers. Top solutions include the Amazon marketplace,
                AWS cloud services, Amazon Prime, and devices like Kindle and
                Echo. They focus on providing a wide selection, competitive
                pricing, and convenience to their customers.
            Related news:
              type: array
              items:
                type: object
              example:
                - link: >-
                    https://www.msn.com/en-us/money/markets/amazoncom-inc-stock-underperforms-wednesday-when-compared-to-competitors/ar-BB1qayjh
                  source: www.msn.com
                  title: >-
                    Amazon.com Inc. stock underperforms Wednesday when compared
                    to competitors
            Strategic priorities:
              type: string
              example:
                Customer Experience Enhancement: >-
                  Amazon focuses on improving all aspects of the customer
                  experience, including lowering prices, improving availability,
                  offering faster delivery and performance times, increasing
                  selection, and producing original content.
                Customer Obsession: >-
                  Amazon's primary strategic priority is customer obsession,
                  focusing on delighting customers at every touchpoint and
                  innovating based on their needs.
                Technology and Infrastructure Investment: >-
                  Amazon invests in technology and infrastructure, including
                  AWS, to support a variety of product and service offerings,
                  geographic expansion, and to enhance the customer experience
                  and improve process efficiencies.
    InvalidURL:
      type: object
      properties:
        data:
          type: object
          nullable: true
          example: null
        message:
          type: string
          example: 'Bad request: Invalid linkedin_url.'
    ProfileNotFound:
      type: object
      properties:
        data:
          type: object
          nullable: true
          example: null
        message:
          type: string
          example: The url was not found on Linkedin.
    SystemError:
      type: object
      properties:
        data:
          type: object
          nullable: true
          example: null
        message:
          type: string
          example: System error. We will fix it soon!
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key

````