REST API v1

API Documentation

Submit brand and creator applications programmatically. No auth required.

Base URL

https://rentacreator.io

Endpoints

GET /v1/apply Returns API schema & examples

Use this to discover the API. Returns available fields, types, and example payloads.

$ curl https://rentacreator.io/v1/apply
POST /v1/apply Submit application

Brand / Agent Application

For apps and startups looking for UGC creators.

$ curl -X POST https://rentacreator.io/v1/apply \
-H "Content-Type: application/json" \
-d '{
"type": "agent",
"email": "founder@myapp.com",
"app_url": "https://myapp.com",
"description": "AI fitness coaching app",
"budget": "$5K/mo",
"phone": "+1234567890"
}'

Creator Application

For creators looking to earn by making UGC videos.

$ curl -X POST https://rentacreator.io/v1/apply \
-H "Content-Type: application/json" \
-d '{
"type": "creator",
"email": "creator@gmail.com",
"profile_url": "https://tiktok.com/@mycreator",
"past_brands": "Shein, HelloFresh",
"niche": "fitness, beauty",
"phone": "+1987654321"
}'

Response

{
"success": true,
"message": "Application received. We'll review and reach out shortly.",
"record_id": "recABC123"
}

Field Reference

FieldTypeRequiredDescription
emailstringYesContact email
typestringNo"agent" or "creator". Auto-detected if omitted.
app_urlstringNoApp Store / website URL (brands)
descriptionstringNoWhat your product does (brands)
budgetstringNoMonthly growth budget (brands)
linkedinstringNoFounder LinkedIn (brands)
profile_urlstringNoTikTok/IG profile URL (creators)
past_brandsstringNoBrands worked with (creators)
nichestringNoIndustry keywords (creators)
phonestringNoPhone number

Agent Discovery

AI agents can discover RentACreator through multiple protocols:

← Back to RentACreator