Skip to main content
GET
/
v1
/
agency
/
proposals
/
{id}
Fetch agency proposal by ID
curl --request GET \
  --url https://api.getmany.io/service/v1/agency/proposals/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "proposal": {
      "uid": "1955676881223622657",
      "createdAt": "2025-08-13T17:04:38.077Z",
      "status": "SUBMITTED",
      "isBoosted": false,
      "isBoostOutbid": false,
      "coverLetter": "<string>",
      "connectsSpent": 20,
      "questions": [
        {
          "question": "<string>",
          "answer": "<string>"
        }
      ]
    },
    "freelancer": {
      "uid": "669484786717323264",
      "name": "John Doe"
    },
    "manager": {
      "uid": "1747622284724662272",
      "name": "Jane Doe"
    },
    "job": {
      "uid": "1955676437925687781",
      "title": "AWS Lambda Function for Integration with SQS and Bubble.io",
      "description": "<string>",
      "url": "https://www.upwork.com/jobs/~021955676437925687781",
      "duration": "Up to 1 month",
      "price": 1000,
      "minHourlyRate": null,
      "maxHourlyRate": null,
      "hireType": "ANY",
      "budgetType": "FIXED",
      "prefEnglishSkills": "ANY",
      "projectType": "One-time project",
      "skills": [
        "API",
        "AWS Lambda",
        "Python",
        "API Integration",
        "Amazon Web Services"
      ],
      "vendorExpLevel": "EXPERT",
      "category": "Web Development",
      "createdAt": "2025-08-13T17:02:52.446Z",
      "isFeatured": false
    },
    "client": {
      "country": "US",
      "avgHourlyRate": 15.001127904353712,
      "totalSpent": 4717.25,
      "industry": "Art & Design",
      "timezone": "America/Sao_Paulo",
      "connectedAt": "2020-10-17T00:00:00.000Z",
      "totalHires": 3,
      "feedbackCount": 6,
      "feedbackScore": 5,
      "hireRate": 60,
      "isEnterprise": false,
      "isPaymentMethodVerified": true,
      "isPhoneNumberVerified": false
    },
    "jobSearch": {
      "id": "689b6e81d6d44dcb40b9a9cf",
      "url": "https://app.getmany.io/jse/689b6e81d6d44dcb40b9a9cf",
      "name": "My Upwork Search"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Proposal details object

data
object