Quickstart
Make your first TexAu API call in under 5 minutes.
Prerequisites
- A TexAu API key — contact texau.com if you don't have one
curl, Python 3.8+, or Node.js 18+
Step 1 — Verify connectivity
curl https://v3-api.texau.com/api/v1/health \
-H "x-api-key: YOUR_API_KEY"
Expected:
{ "status": "ok", "apis": 30 }
Step 2 — 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"}'
You'll receive the full profile: name, headline, company, education, skills, and more.
Step 3 — Search for people
curl -X POST https://v3-api.texau.com/api/v1/people_search \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"contact": { "jobTitle": ["CTO"], "location": ["united states"] },
"page": 0,
"size": 10
}'
Step 4 — Scrape a website
curl -X POST https://v3-api.texau.com/api/v1/web_meta_tags \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://texau.com"}'
Step 5 — Check your credit balance
curl https://v3-api.texau.com/api/v1/usage \
-H "x-api-key: YOUR_API_KEY"
Expected:
{
"month": "2026-03",
"total_credits": 4.1,
"total_cost": 0.082,
"credit_value": 0.02,
"apis": {
"enrich_profile": { "calls": 1, "credits": 1 },
"people_search": { "calls": 1, "credits": 1 },
"web_meta_tags": { "calls": 1, "credits": 1 },
"health": { "calls": 1, "credits": 0 }
}
}
Next Steps
Credits & Pricing
Understand billing models across all 30 endpoints.
Enrichment
Profile, company, and bulk LinkedIn enrichment.
Web Scraping
Extract metadata, tech stack, emails, and more.
API Reference
Full OpenAPI reference with live request builder.
1. Update a page
Edit introduction
Replace the sample introduction with a concise overview of your product and the key actions you want new users to take first.
Preview your change
Use your dashboard board editor to confirm the updated introduction looks and reads as expected.
2. Add a new page
Add a page
Create a new page by clicking on the + button from the left navigation bar of dashboard. If you are using git, create the .mdx file and add to navigation bar using documentation.json
Example onboarding flow (replace with yours)
-
Sign up for an account and verify your email.
-
Create your first workspace, project, or environment.
-
Add one integration or data source to connect your existing tools.
-
Complete a guided action (for example, run your first job or publish your first resource).
-
Invite a teammate and assign a basic role or permission.
3. Connect API Reference (optional)
If you have an API, replace openapi.yaml with your real OpenAPI file. If you do not need an API reference, remove that tab either from dashboard or documentation.json.
Next steps
Last updated Mar 26, 2026
Built with Documentation.AI