Direct access
Provider-owned integration
This listing is discovery-only. Calls go straight to the provider and follow the provider's docs and auth model.
Marketplace execution
Disabled
Auth and payment
Provider-defined
Use this listing to discover StableEnrich docs and pay-per-request enrichment workflows for agents.
## Access model
This is a discovery-only external API. Calls go directly to the provider; the marketplace does not proxy, authenticate, or settle them.
## Setup
1. Review the provider docs before calling any endpoint.
2. Authenticate directly with the provider as required by the provider.
3. Authenticate directly with StableEnrich as required by the provider.
## External Endpoints
### AI-generated answers with citations
Method: POST
Direct URL: https://stableenrich.dev/api/exa/answer
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/exa/answer" \
-H "Content-Type: application/json" \
-d '{
"query": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Enrich contact info from LinkedIn URL, email, or phone
Method: POST
Direct URL: https://stableenrich.dev/api/clado/contacts-enrich
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/clado/contacts-enrich" \
-H "Content-Type: application/json" \
-d '{
"email": "string",
"phone": "string",
"linkedin_url": "string",
"email_enrichment": false,
"phone_enrichment": false
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Enrich single company by domain
Method: POST
Direct URL: https://stableenrich.dev/api/apollo/org-enrich
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/apollo/org-enrich" \
-H "Content-Type: application/json" \
-d '{
"domain": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Enrich single person by email/name/domain
Method: POST
Direct URL: https://stableenrich.dev/api/apollo/people-enrich
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/apollo/people-enrich" \
-H "Content-Type: application/json" \
-d '{
"id": "string",
"name": "string",
"email": "string",
"domain": "string",
"last_name": "string",
"first_name": "string",
"linkedin_url": "string",
"organization_name": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Enrich social media profile with contact info
Method: POST
Direct URL: https://stableenrich.dev/api/influencer/enrich-by-social
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/influencer/enrich-by-social" \
-H "Content-Type: application/json" \
-d '{
"platform": "instagram",
"username": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Extract content from URLs
Method: POST
Direct URL: https://stableenrich.dev/api/exa/contents
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/exa/contents" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"string"
]
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Find companies by filters
Method: POST
Direct URL: https://stableenrich.dev/api/apollo/org-search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/apollo/org-search" \
-H "Content-Type: application/json" \
-d '{
"page": 1,
"q_keywords": "string",
"excludeFields": [
"string"
],
"organization_ids": [
"string"
],
"organization_locations": [
"string"
],
"q_organization_domains": [
"string"
],
"organization_industry_tag_ids": [
"string"
],
"organization_num_employees_ranges": [
"string"
]
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Find pages similar to a URL
Method: POST
Direct URL: https://stableenrich.dev/api/exa/find-similar
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/exa/find-similar" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Find prospects by filters
Method: POST
Direct URL: https://stableenrich.dev/api/apollo/people-search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/apollo/people-search" \
-H "Content-Type: application/json" \
-d '{
"q_keywords": "string",
"person_titles": [
"string"
],
"organization_ids": [
"string"
],
"person_locations": [
"string"
],
"person_not_titles": [
"string"
],
"person_seniorities": [
"owner"
],
"organization_locations": [
"string"
],
"q_organization_domains": [
"string"
]
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Find social profiles by email
Method: POST
Direct URL: https://stableenrich.dev/api/influencer/enrich-by-email
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/influencer/enrich-by-email" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Full place details by ID
Method: GET
Direct URL: https://stableenrich.dev/api/google-maps/place-details/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stableenrich.dev/api/google-maps/place-details/full"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Get post details and comments
Method: POST
Direct URL: https://stableenrich.dev/api/reddit/post-comments
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/reddit/post-comments" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Google News search
Method: POST
Direct URL: https://stableenrich.dev/api/serper/news
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/serper/news" \
-H "Content-Type: application/json" \
-d '{
"q": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Google Shopping search
Method: POST
Direct URL: https://stableenrich.dev/api/serper/shopping
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/serper/shopping" \
-H "Content-Type: application/json" \
-d '{
"q": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nearby search with basic details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/nearby-search/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/nearby-search/partial" \
-H "Content-Type: application/json" \
-d '{
"locationRestriction": {
"circle": {
"center": {
"latitude": 0,
"longitude": 0
},
"radius": 0
}
}
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nearby search with full details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/nearby-search/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/nearby-search/full" \
-H "Content-Type: application/json" \
-d '{
"locationRestriction": {
"circle": {
"center": {
"latitude": 0,
"longitude": 0
},
"radius": 0
}
}
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Neural web search
Method: POST
Direct URL: https://stableenrich.dev/api/exa/search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/exa/search" \
-H "Content-Type: application/json" \
-d '{
"query": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Partial place details by ID
Method: GET
Direct URL: https://stableenrich.dev/api/google-maps/place-details/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stableenrich.dev/api/google-maps/place-details/partial"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Property ownership and resident details by address
Method: POST
Direct URL: https://stableenrich.dev/api/whitepages/property-search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/whitepages/property-search" \
-H "Content-Type: application/json" \
-d '{
"street": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Scrape a URL with full JavaScript rendering
Method: POST
Direct URL: https://stableenrich.dev/api/firecrawl/scrape
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/firecrawl/scrape" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Scrape full LinkedIn profile data
Method: POST
Direct URL: https://stableenrich.dev/api/clado/linkedin-scrape
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/clado/linkedin-scrape" \
-H "Content-Type: application/json" \
-d '{
"linkedin_url": "https://www.linkedin.com/in/example"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Search Reddit posts
Method: POST
Direct URL: https://stableenrich.dev/api/reddit/search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/reddit/search" \
-H "Content-Type: application/json" \
-d '{
"query": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Search for people by name, phone, or address
Method: POST
Direct URL: https://stableenrich.dev/api/whitepages/person-search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/whitepages/person-search" \
-H "Content-Type: application/json" \
-d '{
"city": "string",
"name": "string",
"phone": "string",
"street": "string",
"zipcode": "string",
"last_name": "string",
"first_name": "string",
"state_code": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Search the web and get scraped results
Method: POST
Direct URL: https://stableenrich.dev/api/firecrawl/search
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/firecrawl/search" \
-H "Content-Type: application/json" \
-d '{
"query": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Text search with basic details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/text-search/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/text-search/partial" \
-H "Content-Type: application/json" \
-d '{
"textQuery": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Text search with full details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/text-search/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/text-search/full" \
-H "Content-Type: application/json" \
-d '{
"textQuery": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Verify email deliverability
Method: POST
Direct URL: https://stableenrich.dev/api/hunter/email-verifier
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/hunter/email-verifier" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.Have a request?