Loading...
Loading...
Programmatically create, manage, and distribute press releases
Your API key is a secure token that allows external applications (like your own software, automation tools, or integrations) to access your USAEV.Press account programmatically.
Think of it as a password for machines. Instead of logging in with your email and password through a web browser, your applications use the API key to authenticate and perform actions on your behalf.
USAEV_API_KEYInclude your API key in the Authorization header:
curl -X POST https://usaev.press/api/v1/releases \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Your Press Release Title",
"content": "Your press release content...",
"contact_name": "John Doe",
"contact_email": "john@company.com"
}'Automatically publish a press release when you deploy a new product version
Connect to 1,000+ apps to trigger press releases from other events
Pull EMV data and analytics into your own reporting tools
Build custom scripts to manage multiple press releases at scale
/api/v1/releasesCreate and publish a new press release
{
"title": "Company Announces Major Product Launch",
"subtitle": "Revolutionary feature changes the industry",
"content": "Full press release body text...",
"contact_name": "Jane Smith",
"contact_email": "jane@company.com",
"contact_phone": "+1-555-0123",
"location": "San Francisco, CA",
"status": "published"
}/api/v1/releasesList all your press releases
/api/v1/releases/:idGet details for a specific press release
/api/v1/releases/:id/analyticsGet analytics data including views, clicks, and EMV
API rate limits vary by subscription tier:
Note: If you exceed your rate limit, you'll receive a 429 Too Many Requests error. Wait 60 seconds before retrying.