1. talent
server
  • auth
    • sign-up
      POST
    • confirm-email
      POST
    • regenerate-confirm-email-code
      GET
    • login-user
      POST
    • reset-password-token
      POST
    • reset-password
      POST
    • get-current-user
      GET
    • verify-with-2fa
      POST
  • Job
    • post-Job
      POST
    • get-jobs
      GET
    • get-job-by-id
      GET
    • apply-job
      POST
    • get-internal-applied-jobs
      GET
    • get-all-applied-jobs
      GET
    • talent-matching
      GET
  • profile
    • get-profile
      GET
    • update-profile
      PATCH
  • security
    • generate-2fa
      POST
    • verify-2fa
      POST
    • disable-2fa
      POST
  • chatbot
    • prompt-ai
      POST
  • feeds
    • post
    • get-all-posts
    • like-post
    • bookmark-post
    • comment-post
    • get-comments
  • cms
    • content
      • post-content
      • get-all-content
      • get-content-by-id
      • update-content
      • delete-content
    • contest
      • post-contest
      • get-contest
      • get-contest-by-id
      • update-contest
      • delete-contest
    • webinar
      • create-webinar
      • register-webinar
      • speaker-application
      • get-speaker-applications
      • get-all-webinars
      • create-faqs
      • get-faqs
    • winner-spotlight
      • create-winner-spotlight
      • get-winner-spotlights
      • get-winner-spotlight-by-id
      • update-winner-spotlight
      • delete-winner-spotlight
  • socials
    • follow
      • follow-user
      • unfollow-user
    • chats
      • send-message
      • get-chats
      • get-chat-by-id
  • talent
    • apply-talent
      GET
    • get-talents-applications
      GET
    • talent-application-review
      PATCH
    • user-get-talents
      GET
  1. talent

apply-talent

Developing
GET
/talent/applied

Request

Body Params application/json

Examples

Responses

🟠401Unauthorized
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/talent/applied' \
--header 'Content-Type: application/json' \
--data '{
  "portfolioLinks": [
    "https://www.behance.net/janesmith",
    "https://dribbble.com/janesmith_designs",
    "https://janesmith.dev/portfolio"
  ],
  "credentials": [
    "https://example.com/uploads/credentials/jane_smith_diploma.pdf",
    "https://example.com/uploads/credentials/adobe_certified_expert.png"
  ],
  "coverLetter": "As a dedicated graphic designer with over 7 years of experience specializing in brand identity and digital illustration, I have a proven track record of delivering compelling visual solutions for a diverse range of clients. My portfolio highlights my expertise in creating memorable logos, marketing materials, and user interfaces. I am eager to contribute to the Creative Verse community as a verified talent and collaborate with other passionate creators."
}'
Response Response Example
{
    "status": "string",
    "statusCode": 0,
    "message": "string",
    "error": "string"
}
Modified at 2025-09-30 13:11:28
Previous
get-chat-by-id
Next
get-talents-applications
Built with