Get Started
Documents
Architecture
API References
- Core APIs
- Waitlist
- User profile info
- Resume object
- Education object
- Experience object
- Skill object
- Project object
- Job
Project object
Create a new project
Adds a new project to the user’s resume as specified in the resume id.
If a base
is provided as resume id, the Project is added to the base resume.
POST
/
resume
/
{resume_id}
/
project
/
Copy
curl --request POST \
--url https://api.letraz.app/api/v1/resume/{resume_id}/project/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"skills_used": [
{
"name": "<string>",
"category": "<string>"
}
],
"category": "<string>",
"name": "<string>",
"description": "<string>",
"role": "<string>",
"github_url": "<string>",
"live_url": "<string>",
"started_from_month": 6,
"started_from_year": 2000,
"finished_at_month": 6,
"finished_at_year": 2000,
"current": true
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"skills_used": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "<string>",
"name": "<string>",
"preferred": true,
"alias": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "<string>",
"name": "<string>",
"preferred": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
],
"resume_section": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resume": "<string>",
"index": 0,
"type": "<string>"
},
"category": "<string>",
"name": "<string>",
"description": "<string>",
"role": "<string>",
"github_url": "<string>",
"live_url": "<string>",
"started_from_month": 6,
"started_from_year": 2000,
"finished_at_month": 6,
"finished_at_year": 2000,
"current": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"user": "<string>"
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
Resume ID of the resume the education belongs to. If you want to interact with the base project, just put base
in here
Body
Response
201
application/json
The response is of type object
.
Copy
curl --request POST \
--url https://api.letraz.app/api/v1/resume/{resume_id}/project/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"skills_used": [
{
"name": "<string>",
"category": "<string>"
}
],
"category": "<string>",
"name": "<string>",
"description": "<string>",
"role": "<string>",
"github_url": "<string>",
"live_url": "<string>",
"started_from_month": 6,
"started_from_year": 2000,
"finished_at_month": 6,
"finished_at_year": 2000,
"current": true
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"skills_used": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "<string>",
"name": "<string>",
"preferred": true,
"alias": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "<string>",
"name": "<string>",
"preferred": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
],
"resume_section": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resume": "<string>",
"index": 0,
"type": "<string>"
},
"category": "<string>",
"name": "<string>",
"description": "<string>",
"role": "<string>",
"github_url": "<string>",
"live_url": "<string>",
"started_from_month": 6,
"started_from_year": 2000,
"finished_at_month": 6,
"finished_at_year": 2000,
"current": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"user": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.