Think of something you want to built and ask ChatGPT or Claude how to do it, follow the steps and ask it when you have problems, use Google if it ever fails you.
so I did this one and tried to deploy the code but it returned bugs that I did not know how to solve.
Maybe I should try again and post my problem online!
Some great suggestions here about starting your own thing, while you hunt for clients you can establish your reputation by completing bug bounties. If you complete a few bounties for a medium sized company it's easier to sell your services to them since you have already demonstrated your expertise.
I'd just jump into an API testing application like Postman or similar and start playing with it based on the docs.
If you haven't played with one before here is a cURL you can import into it to get you started -
curl --location --request POST 'api.openai.com/v1/chat/comple…' \
--header 'Authorization: Bearer <Your API Key>' \
--header 'Content-Type: application/json' \
--data-raw '{"model": "gpt-3.5-turbo",
"messages":[
{"role": "system", "content": "<A Message from the system explaining the APIs purpose>"},
{"role": "user", "content": "<Main content of your message>"}
],
"temperature": 1
}'
Yea do that if you have to, you can copy and paste the bugs into chatGPT and get good solutions almost all the time, sometimes you may have to consult Google or stack overflow.