Wispr AI LinkedIn API
The LinkedIn API from Wispr AI — 3 operation(s) for linkedin.
The LinkedIn API from Wispr AI — 3 operation(s) for linkedin.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/wispr-ai-linkedin-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Wispr Backend Analytics Linked In API
description: Wispr Backend API
version: 0.5.2
servers:
- url: https://api.wisprflow.ai
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: LinkedIn
paths:
/api/v1/linkedin/connect:
get:
tags:
- LinkedIn
summary: Linkedin Connect
description: 'Begin the LinkedIn OAuth flow: redirect the user to LinkedIn''s consent screen.'
operationId: linkedin_connect
security:
- ApiKeyHeaderPatched: []
parameters:
- name: source
in: query
required: false
schema:
type: string
default: unknown
title: Source
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/linkedin/status:
get:
tags:
- LinkedIn
summary: Linkedin Status
description: Return the caller's LinkedIn connection state.
operationId: linkedin_status
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/LinkedInStatusResponse'
security:
- ApiKeyHeaderPatched: []
/api/v1/linkedin/disconnect:
post:
tags:
- LinkedIn
summary: Linkedin Disconnect
description: Remove the caller's LinkedIn integration; best-effort delete the signal first.
operationId: linkedin_disconnect
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/LinkedInDisconnectResponse'
security:
- ApiKeyHeaderPatched: []
components:
schemas:
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
input:
title: Input
ctx:
type: object
title: Context
type: object
required:
- loc
- msg
- type
title: ValidationError
LinkedInStatusResponse:
properties:
connected:
type: boolean
title: Connected
linkedin_member_id_suffix:
anyOf:
- type: string
- type: 'null'
title: Linkedin Member Id Suffix
is_top_user:
type: boolean
title: Is Top User
last_sync_at:
anyOf:
- type: string
format: date-time
- type: 'null'
title: Last Sync At
status:
anyOf:
- type: string
enum:
- pending
- active
- failed
- type: 'null'
title: Status
type: object
required:
- connected
- linkedin_member_id_suffix
- is_top_user
- last_sync_at
- status
title: LinkedInStatusResponse
description: The user's LinkedIn connection status and last sync metadata.
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
LinkedInDisconnectResponse:
properties:
disconnected:
type: boolean
title: Disconnected
was_connected:
type: boolean
title: Was Connected
type: object
required:
- disconnected
- was_connected
title: LinkedInDisconnectResponse
description: The result of a LinkedIn disconnect request.
securitySchemes:
ApiKeyHeaderPatched:
type: apiKey
in: header
name: Authorization
APIKeyHeader:
type: apiKey
in: header
name: X-API-Key