logo

Getting Started

Welcome to the TexAu V3 API. This guide will help you make your first API call in under 5 minutes.

Base URL

https://v3-api.texau.com/api/v1/

Authentication

Every request requires an API key passed via the x-api-key header.

curl https://v3-api.texau.com/api/v1/health \
  -H "x-api-key: YOUR_API_KEY"

Don't have an API key yet? Contact us at texau.com to get started.

Your First API Call

Let's enrich a LinkedIn profile:

curl -X POST https://v3-api.texau.com/api/v1/enrich_profile \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.linkedin.com/in/satyanadella"
  }'

Response:

{
  "firstname": "Satya",
  "lastname": "Nadella",
  "headline": "Chairman and CEO at Microsoft",
  "summary": "...",
  "picture": "https://...",
  "industry": "Technology",
  "location": {
    "country": "United States",
    "city": "Redmond",
    "state": "Washington"
  }
}

Check Your Usage

Monitor your credit consumption anytime:

curl https://v3-api.texau.com/api/v1/usage \
  -H "x-api-key: YOUR_API_KEY"

Available Endpoints

57 endpoints across 10 categories.

LinkedIn Enrichment

EndpointMethodCreditsDescription
/enrich_profilePOST1/callEnrich a LinkedIn person profile
/enrich_companyPOST1/callEnrich a LinkedIn company page
/enrich_profiles_bulkPOST1/resultEnrich up to 50 LinkedIn profiles at once
/enrich_companies_bulkPOST1/resultEnrich up to 50 LinkedIn companies at once
/profile_activitiesPOST2/callRecent posts, comments, and reactions
/post_activitiesPOST3/callPaginated comments/reactions on a single post
/post_detailsPOST1/callFull post with comments and reactions

Waterfall Enrichment (sync, single-record, multi-source)

EndpointMethodCreditsDescription
/email_finderPOST5 success · 1 soft · 0 hard failFind a professional email (multi-source)
/phone_finderPOST10 success · 1 soft · 0 hard failFind a mobile phone (multi-source)
/email_verifierPOST1 success · 0.5 soft · 0 hardVerify deliverability of an email
/person_enricherPOST2 success · 1 soft · 0 hard failEnrich a person from an email
/company_enricherPOST2 success · 1 soft · 0 hard failEnrich a company from a domain
EndpointMethodCreditsDescription
/people_searchPOST0.1/resultSearch 700M+ indexed LinkedIn profiles
/profile_searchGET0.1/resultLive LinkedIn profile search by name / title
/post_keyword_searchPOST6/callSearch LinkedIn posts by keyword
EndpointMethodCreditsDescription
/ad_searchGET0.2/resultSearch LinkedIn Ad Library by keyword/company
/ad_detailsGET2/callFull ad details with targeting and impressions
/lead_searchPOST0.5/resultAdvanced lead search with 30+ filters
/geo_id_searchGET0.01/callResolve location names to LinkedIn Geo IDs
/search_reference_dataGET0Valid filter labels for lead search

Web Scraping

EndpointMethodCreditsDescription
/web_meta_tagsPOST1/callOG, Twitter Card, SEO meta tags
/web_json_ldPOST1/callJSON-LD structured data blocks
/web_pixelsPOST1/callTracking pixels and analytics tag detection
/web_scrapePOST1/callFull-page HTML, Markdown, and links
/web_social_linksPOST1/callSocial media profile links grouped by platform
/web_tech_stackPOST1/callCMS, framework, CDN, and analytics stack detection
/web_emailsPOST2/callEmail addresses extracted from multi-page crawl
/web_sitemapPOST1/callSitemap URL discovery
/website_intelligencePOST5/callFlagship all-in-one report + DNS/SSL/headers

Search & Directories

EndpointMethodCreditsDescription
/search_bingPOST1/callBing web search results
/search_google_trendsPOST1/callGoogle Trends interest over time and by region
/directory_yellowpagesPOST1/callYellow Pages business directory search
/slack_channel_membersPOST2/callExtract members from public Slack channels

YouTube

EndpointMethodCreditsDescription
/youtube_searchPOST1/callYouTube video keyword search
/youtube_videoPOST1/callVideo metadata and optional captions
/youtube_channelPOST1/callChannel metadata and statistics
/youtube_channel_videosPOST2/callChannel video listing

Email (async, batch)

EndpointMethodCreditsDescription
/email_findingPOST2/resultFind email addresses (webhook delivery)
/email_finding_inquiry/{id}GET0Poll email finding results (free)
/email_verificationPOST0.5/resultVerify email deliverability (webhook)
/email_verification_inquiry/{id}GET0Poll verification results (free)

AI Enrichment

EndpointMethodCreditsDescription
/ai_enrichPOST2/call · 5/call (Perplexity)Unified LLM gateway (OpenAI / Anthropic / Gemini / Perplexity)

Custom Functions (local utilities)

EndpointMethodCreditsDescription
/clean_domainPOST0.5Normalize and validate a URL or domain
/predict_genderPOST1Predict gender from a first name
/encode_uriPOST0.5RFC 3986 percent-encoding
/count_occurrencesPOST0.5Count items in a separated list
/find_sitemap_urlsPOST1Discover URLs on a domain via its sitemap
/normalize_listPOST0.5Trim + dedupe a separated list
/identify_email_typePOST0.5Classify email as work/personal/role/disposable
/extract_urls_emailsPOST0.5Extract URLs and emails from text
/normalize_phonePOST0.5Normalize phone to E.164
/normalize_companyPOST0.5Strip legal suffixes from company names
/remove_whitespacePOST0.5Collapse multiple whitespace runs
/format_datetimePOST0.5Format and timezone-convert datetimes
/find_redirectPOST1Follow redirects / resolve short links
/distribute_leadsPOST0.5Round-robin assignment across labels

System

EndpointMethodCreditsDescription
/healthGET0API status check (no auth required)
/usageGET0Real-time credit usage tracking
/my-endpointsGET0List the endpoints enabled on your plan
/catalogGET0Machine-readable catalog for MCP / SDK clients

Next Steps

Was this page helpful?

Last updated 2 weeks ago

Built with Documentation.AI